Continuing the discussion from Linq Query to get the count of a value in particular column of datatable:
Hey,
What if the string “inv002” is dynamic?
I.e we have a list and “inv002” is a part of that list??
Continuing the discussion from Linq Query to get the count of a value in particular column of datatable:
Hey,
What if the string “inv002” is dynamic?
I.e we have a list and “inv002” is a part of that list??
HI @Ray_Sha1
Try this instead of the above
(Function(r) r("Invoice Number").ToString.ToUpper="INV002")
Regards
Sudharsan
It is about use upper keyword…
Suppose it’s dynamic, taken from a list
@Yoichi, can this be accomplished in dynamic order?
Hi,
If your requirement is filter datatable with items of your list, the following will work.
yourList = New List(Of String)From{"A","B"}
Then
dt.AsEnumerable.Where(Function(r) yourList.Contains(r("Invoice Number").ToString)).CopyToDataTable
If the above isn’t what you expect, can you elaborate with specific sample?
Regards,
what kind of list Can you share the Input and expected output? @Ray_Sha1
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.