I know you can look at the row.count or tables.count, but are there other ways to tell if a dataset is empty?
|
I would suggest something like:-
Edits: I have significantly cleaned up the code after due consideration, I think this is much cleaner. Many thanks to Keith for the inspiration regarding the use of .Any(). In line with Keith's suggestion, here is an extension method version of this approach:-
Note, as Keith rightly corrected me on in the comments of his post, this method will work even when the data set is null. |
||||
|
|
What's wrong with (aDataSet.Tables.Count == 0) ? |
|||||
|
|
I have created a small static util class just for that purpose Below code should read like an English sentence.
I would just put something like below code and be done with it. Writing a readable code does count.
|
|||
|
|
|
I think this is a place where you could use an extension method in C# 3 to improve legibility. Using kronoz's idea...
Due to the fact that extension methods are always expanded by the compiler this will even work if the dataset being checked is null. At compile time this is changed:
|
|||||||||
|
|
To be clear, you would first need to look at all the DataTables, and then look at the count of Rows for each DataTable. |
|||
|
|
|
|||
|