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

파일 보기 프로젝트 열기: CloudMetal/mongo-csharp-driver

공개 메소드들

메소드 설명
Exclude ( ) : FieldsBuilder

Adds one or more field names to be excluded from the results.

Include ( ) : FieldsBuilder

Adds one or more field names to be included in the results.

Slice ( string name, int size ) : FieldsBuilder

Adds a slice to be included in the results.

Slice ( string name, int skip, int limit ) : FieldsBuilder

Adds a slice to be included in the results.

메소드 상세

Exclude() 공개 정적인 메소드

Adds one or more field names to be excluded from the results.
public static Exclude ( ) : FieldsBuilder
리턴 FieldsBuilder

Include() 공개 정적인 메소드

Adds one or more field names to be included in the results.
public static Include ( ) : FieldsBuilder
리턴 FieldsBuilder

Slice() 공개 정적인 메소드

Adds a slice to be included in the results.
public static Slice ( string name, int size ) : FieldsBuilder
name string The name of the field to slice.
size int The size of the slice (negative sizes are taken from the end).
리턴 FieldsBuilder

Slice() 공개 정적인 메소드

Adds a slice to be included in the results.
public static Slice ( string name, int skip, int limit ) : FieldsBuilder
name string The name of the field to slice.
skip int The number of values to skip.
limit int The number of values to extract.
리턴 FieldsBuilder