Метод | Описание | |
---|---|---|
Exclude ( ) : |
Adds one or more field names to be excluded from the results.
|
|
Include ( ) : |
Adds one or more field names to be included in the results.
|
|
Slice ( string name, int size ) : |
Adds a slice to be included in the results.
|
|
Slice ( string name, int skip, int limit ) : |
Adds a slice to be included in the results.
|
public static Exclude ( ) : |
||
Результат |
public static Include ( ) : |
||
Результат |
public static Slice ( string name, int size ) : |
||
name | string | The name of the field to slice. |
size | int | The size of the slice (negative sizes are taken from the end). |
Результат |
public static Slice ( string name, int skip, int limit ) : |
||
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. |
Результат |