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 ( string function ) : MapReduce
function string
Результат MapReduce
        public MapReduce Map(string function)
        {
            return Map(new Code(function));
        }

Same methods

MapReduce::Map ( Code function ) : MapReduce