I have converted a windows forms application from .net 3.5 to .net 4. I am using Linq to operatate with data. Now I have some problems with Linq, because in the new version it throws an exception when trying to make a query over null resultset. For example (resultSet is of type System.Linq.IQueryable<>):
var orderedResult = from d in resultSet
orderby d.ID descending
select d;
Throws an exception "Value can not be null" when resultSet is null. It was working fine in .NET 3.5. How can I avoid this errors in .NET 4, making the least change in code? Are there any setting I can switch, so that when the resultSet value is null, not any query is done, without throwing an exception?
The problem is that I have thousands of statements like the one above. If I have to check for every of them with "if resultsSet != null", it will be a difficult solution. In .NET version 3.5 query over null resultset was just returning null. Can I make it the same for .NET 4?
Let's call a method on
null
!usage: