Learn what's new in:
What's New in 2.0
The 2.0 MongoDB C# Analyzer release includes the following features, improvements, and fixes:
Supports only .NET/C# driver v3.0 and higher.
Drops support for the
MALinq2002
rule because .NET/C# driver v3.0 removes theLINQ2
provider.Drops support for
IMongoQueryable
. As a result, the C# Analyzer attempts to analyze eachIQueryable
object, except for system collections and arrays. This version adds theLinqAnalysisVerbosity
option to control the verbosity ofIQueryable
analysis.
What's New in 1.5
The 1.5 MongoDB C# Analyzer release includes the following features, improvements, and fixes:
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
The 1.4 MongoDB C# Analyzer release includes the following features, improvements, and fixes:
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);