Booleans in Linq

Using a nullable Boolean (bool?) datatype in LINQ can cause some issues

You can return those values by using the nullable operator as shown below

  Transfer = e.Transfer ?? false

This will return the value from e.Transfer and if the value is null will return False

Comments

Popular posts from this blog

Grouping with Data Entities

Linq - Data Entities - Records by Max Date with CASE

Linq Remove from list based on other table