What's New
On this page
Learn what's new in:
What's New in 1.5
New features of the 1.5 MongoDB C# Analyzer release include:
New analysis rules introduced for Entity Framework Core, which enable displaying MongoDB Query API translations for MongoDB Entity Framework Core Provider expressions at compile time
Support for strong named 2.28 driver
Supports fully qualified names for data models
What's New in 1.4
New features of the 1.4 MongoDB C# Analyzer release include:
Support for builders defined within variables. For example, the C# Analyzer analyzes the second line in the following code:
var movieFilterBuilder = Builders<Movie>.Filter; var filterReviews = movieFilterBuilder.Size(p => p.Reviews, 5);