MongoDB.MapReduce.Out C# (CSharp) Метод

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

Name of the final collection the results should be stored in.
A temporary collection is still used and then renamed to the target name atomically.
public Out ( String name ) : MapReduce
name String
Результат MapReduce
        public MapReduce Out(String name)
        {
            TryModify();
            Command.Out = name;
            return this;
        }

Same methods

MapReduce::Out ( Document @out ) : MapReduce