Hi,
If my DataView contains data
ID VALUE
APPLE 1
APPLE 3
APPLE 2
ORANGE 1
ORANGE 4
ORANGE 2
ORANGE 3
Can I use .FindRows to get DataRowView data ID=ORANGE and sorted by VALUE?
I tried
DataView.Sort="ID, VALUE";
DataRowView [] = DataView.FindRows("ORANGE"
but it's not a valid syntax.
If my DataView contains data
ID VALUE
APPLE 1
APPLE 3
APPLE 2
ORANGE 1
ORANGE 4
ORANGE 2
ORANGE 3
Can I use .FindRows to get DataRowView data ID=ORANGE and sorted by VALUE?
I tried
DataView.Sort="ID, VALUE";
DataRowView [] = DataView.FindRows("ORANGE"
but it's not a valid syntax.