This version of the documentation is archived and no longer supported. View the current documentation to learn how to install supported versions of the MongoDB C# Analyzer.
Learn what's new in:
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);