CSMongo.Query.MongoQuery.Select C# (CSharp) Метод

Select() публичный Метод

Selects the records from the database that matches this query
public Select ( ) : IEnumerable
Результат IEnumerable
        public IEnumerable<MongoDocument> Select()
        {
            return this.Select(Mongo.DefaultSkipCount, Mongo.DefaultTakeCount, QueryOptionTypes.None);
        }

Same methods

MongoQuery::Select ( QueryOptionTypes options ) : IEnumerable
MongoQuery::Select ( int skip, int take ) : IEnumerable
MongoQuery::Select ( int skip, int take, QueryOptionTypes options ) : IEnumerable