| IndexOptionsBuilderTDocumentSetWildcardProjectionTMember Method  | 
 
             Sets the wildcardProjection for the index.
             
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
 Syntax
Syntaxpublic IndexOptionsBuilder<TDocument> SetWildcardProjection<TMember>(
	Expression<Func<TDocument, TMember>> memberExpression,
	bool included
)
Public Function SetWildcardProjection(Of TMember) ( 
	memberExpression As Expression(Of Func(Of TDocument, TMember)),
	included As Boolean
) As IndexOptionsBuilder(Of TDocument)
member SetWildcardProjection : 
        memberExpression : Expression<Func<'TDocument, 'TMember>> * 
        included : bool -> IndexOptionsBuilder<'TDocument> 
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, TMember
 The member expression representing the wildcard projection field name.
- included
- Type: SystemBoolean
 The flag determines whether the field should be included or excluded from wildcard projecting.
Type Parameters
- TMember
- The type of the member.
Return Value
Type: 
IndexOptionsBuilderTDocument
            The builder (so method calls can be chained).
             
 See Also
See Also