I have a field which is that consists from delimiter (dynamic number) parts:
(c44 EE0),(c2 EE7),(e79 EE10),(c2 EE90)
my field is a comma delimiter field and how can i split it (in Linq) and search in the parts separately?
i.e. query : get those parts which have C2
please let me describe my problem again i have a field in sql server which i want to get result of that via LINQ ,
above field named code in SNP table as you can see this code field is tab delimited so i would like to catch those records which have C2 in their at least one part. Its simple to split a field via 'comma delimiter' but how can i do this in a linq query?