Click or drag to resize

IndexKeysBuilderWildcard Method

Sets a wildcard key to the index. The method doesn't expect to specify a wildcard key explicitly.

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public IndexKeysBuilder Wildcard(
	string name = null
)

Parameters

name (Optional)
Type: SystemString
The wildcard key name. If the wildcard name is empty, the generated key will be `All field paths`, otherwise `A single field path`.

Return Value

Type: IndexKeysBuilder
The builder (so method calls can be chained).
See Also