fluent-mongo
                                
                                
                                
                                    fluent-mongo copied to clipboard
                            
                            
                            
                        Provides a fluent interface on top of the 10gen driver including Linq.
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.