Using EF6 I want to get all objects of the year 2019 from my database CALENDRIER, but EF6 generates nullables DateTimes "DateTime?" instead of usual DateTimes. Because I want only the year, I could use the Year field from the DateTime to filter my List, b...