Why is it necessary to "templatize" the collection with method AsQueryable<C>() when the FluentMongo module was able to get by without this redundant reference to the collections class?
With FluentMongo I would have for example
private MongoCollection<C> _col;
foreach (var c in _col.AsQueryable()) {}
Whereas for MongoDB 1.4 I now have specify a redundant <C> in AsQueryable(), for example:
private MongoCollection<C> _col;
foreach (var c in _col.AsQueryable<C>()) {}
thanks in advance for any replies, Andrew