Correct Generation of SQL for SELECT Statement with NULL Parameter
Implement a workaround for Entity Framework bug
( http://stackoverflow.com/questions/682429/how-can-i-query-for-null-values-in-entity-framework )
so that users don't need to write a more complex LINQ to Entities query to avoid this bug.
15
votes
AdminDevart
(_, Devart)
shared this idea
-
Yevhen Shch commented
The config.QueryOptions.UseCSharpNullComparisonBehavior configuration option for checking for NULL when comparing a nullable property (column) or an expression with a variable (parameter) in LINQ to Entities is implemented (by default, false).
( http://forums.devart.com/viewtopic.php?f=30&t=24668 )