MongoDB.MapReduce.Limit C# (CSharp) 메소드

Limit() 공개 메소드

Number of objects to return from collection
public Limit ( long limit ) : MapReduce
limit long
리턴 MapReduce
        public MapReduce Limit(long limit)
        {
            TryModify();
            Command.Limit = limit;
            return this;
        }