Open qanuj opened 14 years ago
Hello
Following query throws exception
The member 'xxx' is not supported
Data.Client pi = Data.Client.SingleOrDefault(x => x.Birthday == coDate);
Birthday is nullable field. ie. DateTime Null
thanks Anuj Pandey
Could this be solved by changing your query slightly? e.g.
Data.Client pi = Data.Client.SingleOrDefault(x => x.Birthday.HasValue && x.Birthday == coDate);
Hello
Following query throws exception
The member 'xxx' is not supported
Data.Client pi = Data.Client.SingleOrDefault(x => x.Birthday == coDate);
Birthday is nullable field. ie. DateTime Null
thanks Anuj Pandey