Edited answer:
I realized that there already is an official way to get the Mongo query from a LINQ query (I should have known!). You have to downcast the IQueryable<T> to a MongoQueryable<T> to get access to the GetMongoQuery method:
var linqQuery = from e in collection.AsQueryable<Entity>() where e.Name == "test" select e;
var mongoQuery = ((MongoQueryable<Entity>)linqQuery).GetMongoQuery();
Original answer:
At the moment there is no officially supported way to do that, but in the near future we do intend to make it easy to find out what MongoDB query the LINQ query was mapped to.
In the short term you could use the following undocumented internal methods to find out what MongoDB query the LINQ query is mapped to:
var linqQuery = from e in collection.AsQueryable<Entity>() where e.Name == "test" select e;
var translatedQuery = (SelectQuery)MongoQueryTranslator.Translate(linqQuery);
var mongoQuery = translatedQuery.BuildQuery();
But at some point you might need to switch from these undocumented methods to officially supported methods (the undocumented methods might change or be renamed in the future).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…