CSMongo.Query.MongoQuery.Select C# (CSharp) Method

Select() public method

Selects the records from the database that matches this query
public Select ( ) : IEnumerable
return 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