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

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

The map function references the variable this to inspect the current object under consideration. A map function must call emit(key,value) at least once, but may be invoked any number of times, as may be appropriate.
public Map ( Code function ) : MapReduce
function Code
Результат MapReduce
        public MapReduce Map(Code function)
        {
            TryModify();
            Command.Map = function;
            return this;
        }

Same methods

MapReduce::Map ( string function ) : MapReduce