C# 클래스 MongoDB.Driver.Builders.MapReduceOutput

Represents the output options of a map/reduce operation.
파일 보기 프로젝트 열기: CloudMetal/mongo-csharp-driver 1 사용 예제들

공개 메소드들

메소드 설명
MapReduceOutput ( ) : System

Creates a new instance of the MapReduceOutput class.

MapReduceOutput ( string collectionName ) : System

Creates a new instance of the MapReduceOutput class.

MapReduceOutput ( string databaseName, string collectionName ) : System

Creates a new instance of the MapReduceOutput class.

Merge ( string collectionName ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).

Merge ( string collectionName, bool sharded ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).

Merge ( string databaseName, string collectionName ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).

Merge ( string databaseName, string collectionName, bool sharded ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).

Reduce ( string collectionName ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).

Reduce ( string collectionName, bool sharded ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).

Reduce ( string databaseName, string collectionName ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).

Reduce ( string databaseName, string collectionName, bool sharded ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).

Replace ( string collectionName ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).

Replace ( string collectionName, bool sharded ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).

Replace ( string databaseName, string collectionName ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).

Replace ( string databaseName, string collectionName, bool sharded ) : MapReduceOutput

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).

비공개 메소드들

메소드 설명
ToBsonValue ( ) : BsonValue

메소드 상세

MapReduceOutput() 공개 메소드

Creates a new instance of the MapReduceOutput class.
public MapReduceOutput ( ) : System
리턴 System

MapReduceOutput() 공개 메소드

Creates a new instance of the MapReduceOutput class.
public MapReduceOutput ( string collectionName ) : System
collectionName string The name of the output collection.
리턴 System

MapReduceOutput() 공개 메소드

Creates a new instance of the MapReduceOutput class.
public MapReduceOutput ( string databaseName, string collectionName ) : System
databaseName string The name of the database that will contain the output collection.
collectionName string The name of the output collection.
리턴 System

Merge() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).
public static Merge ( string collectionName ) : MapReduceOutput
collectionName string The output collection name.
리턴 MapReduceOutput

Merge() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).
public static Merge ( string collectionName, bool sharded ) : MapReduceOutput
collectionName string The output collection name.
sharded bool Whether the output collection is sharded.
리턴 MapReduceOutput

Merge() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).
public static Merge ( string databaseName, string collectionName ) : MapReduceOutput
databaseName string The output database name.
collectionName string The output collection name.
리턴 MapReduceOutput

Merge() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (adding new values and overwriting existing ones).
public static Merge ( string databaseName, string collectionName, bool sharded ) : MapReduceOutput
databaseName string The output database name.
collectionName string The output collection name.
sharded bool Whether the output collection is sharded.
리턴 MapReduceOutput

Reduce() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).
public static Reduce ( string collectionName ) : MapReduceOutput
collectionName string The output collection name.
리턴 MapReduceOutput

Reduce() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).
public static Reduce ( string collectionName, bool sharded ) : MapReduceOutput
collectionName string The output collection name.
sharded bool Whether the output collection is sharded.
리턴 MapReduceOutput

Reduce() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).
public static Reduce ( string databaseName, string collectionName ) : MapReduceOutput
databaseName string The output database name.
collectionName string The output collection name.
리턴 MapReduceOutput

Reduce() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (using the reduce function to combine new values with existing values).
public static Reduce ( string databaseName, string collectionName, bool sharded ) : MapReduceOutput
databaseName string The output database name.
collectionName string The output collection name.
sharded bool Whether the output collection is sharded.
리턴 MapReduceOutput

Replace() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).
public static Replace ( string collectionName ) : MapReduceOutput
collectionName string The output collection name.
리턴 MapReduceOutput

Replace() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).
public static Replace ( string collectionName, bool sharded ) : MapReduceOutput
collectionName string The output collection name.
sharded bool Whether the output collection is sharded.
리턴 MapReduceOutput

Replace() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).
public static Replace ( string databaseName, string collectionName ) : MapReduceOutput
databaseName string The output database name.
collectionName string The output collection name.
리턴 MapReduceOutput

Replace() 공개 정적인 메소드

Gets a MapReduceOutput value that specifies that the output should be stored in a collection (replaces the entire collection).
public static Replace ( string databaseName, string collectionName, bool sharded ) : MapReduceOutput
databaseName string The output database name.
collectionName string The output collection name.
sharded bool Whether the output collection is sharded.
리턴 MapReduceOutput