fluent-mongo icon indicating copy to clipboard operation
fluent-mongo copied to clipboard

Provides a fluent interface on top of the 10gen driver including Linq.

Results 14 fluent-mongo issues
Sort by recently updated
recently updated
newest added

I discovered interesting issue with ! and bool variables. Following code returns emtry result: DocumentCollection.AsQueryable().Where(p=> !p.IsObsolete && p.IsPublished); Such code works fine: DocumentCollection.AsQueryable().Where(p=> (p.IsObsolete == false) && p.IsPublished); Is it...

Given: ``` var datacoll = db.GetCollection("SensorData"); var groups = datacoll.AsQueryable().GroupBy(x => x.PacketCounter); ``` where PacketCounter is an integer. Produces the following error: Expression of type 'System.Collections.Generic.IEnumerable`1[MongoDB.Bson.BsonDocument]' cannot be used for...

It would be nice to have SelectMany in fluent mongodb's linq support to use mongodb in WCF data services.

Feature

It would be nice if $all would be supported using Linq.

Feature