T
tshad
Is there a way to do a Dataset select if test instead of having it return a
set of rows and then test the number of rows it returned?
Something like:
if ((DataSet1.Tables["Orders"].Select("name = 'tom'") > 0)
{
}
Obviously, this won't work but you get the idea. I just want to test if the
select returns any rows. If not just return.
Thanks,
Tom
set of rows and then test the number of rows it returned?
Something like:
if ((DataSet1.Tables["Orders"].Select("name = 'tom'") > 0)
{
}
Obviously, this won't work but you get the idea. I just want to test if the
select returns any rows. If not just return.
Thanks,
Tom