Here's a summary of what's new in Entity Framework Core in this preview release:
Entity Framework Core 10 updates:
In Preview 1 we added support for LeftJoin operator. In Preview 2 we are adding support for the analogous RightJoin operator, which keeps all the data from the second collection and only the matching data from the first collection. EF 10 translates this to RIGHT JOIN operation in the database.
- Associate the DatabaseRoot with the scoped options instance and not the singleton options (#34477, contributed by @koenigst).
Preview 2 contains: