wpf - Linq query comparison -


when running linq on 2 datagrids in wpf can have query different formats matches.

for example phones numbers. in first table phone number format 123-456-7890 , other table format 1234567890

is there way have still recognize matching value using linq query

when select data database, why not use replace there

replace ( yourcolumnname , '-', '' ) 

this remove '-' characters data both tables have same format.


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -