Hi all,
my csv
and linq
i’m calculation how many of Kandilli does have but the program output is 5. I want to know if i write “Kandilli” it should brings equal or close ones. The all data in 1 column. Program should calculate these datas to.
Thanks.
Have you tried Contains() instead?
.ToString.Contains("Kandilli")
contains returns as a boolean my assign act is integer.
I mean in the Linq expression:
Excel_CSV.AsEnumerable.Count(Function(r) r.Item("Semt").ToString.Contains("Kandilli"))
ok i did wrongly. and it worked
Thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.