I have the following LINQ query:
Manager mngr = (from tr in DataContext.Manager
where tr.Name = "Jones").FirstOrDefault();
How can I check if the query did return 1 record as I cannot do .Count to get the count.
|
I have the following LINQ query:
How can I check if the query did return 1 record as I cannot do .Count to get the count. |
|||||
|
|
First of all, that is not a valid query. When you use the query syntax (
To answer your question, calling If you wish to verify that the query only returns a single result, you should use the If you don't want to throw an exception, it may be easier to just throw the results into a list and verify that the count of items is one.
|
|||
|
If you want to count the records, count the result of the query without FirstOrDefault.
You can still run first or default on the mngr to get the specific manager. |
|||
|
|
|
You can use the
However it does not tell you whether you got 0 results or more than 1. |
||||
|
|
|
You are using an ID for the If your problem is having no result please check the usage of
|
|||
|
|