The following linq-to-sql expression throws null pointer exception.
List<string> nameList = GetNames();
db.Users.FindSync(u => nameList.Contains(u.Name))
I have found the issue is that nameList
is null. But the following update isn't helping.
u => nameList == null || nameList.Contains(u.Name)
I have found from google searches that NPE occurs during conversion to SQL (not during evaluation). Is there a way to get around this issue?
It seems you have little options here. Here is one I would normally use to tackle such problems.