@@ -114,9 +114,9 @@ public static IndexOptionsBuilder SetSparse(bool value)
114
114
/// </summary>
115
115
/// <param name="value">The value.</param>
116
116
/// <returns>The builder (so method calls can be chained).</returns>
117
- public static IndexOptionsBuilder SetStorageOptions ( BsonDocument value )
117
+ public static IndexOptionsBuilder SetStorageEngineOptions ( BsonDocument value )
118
118
{
119
- return new IndexOptionsBuilder ( ) . SetStorageOptions ( value ) ;
119
+ return new IndexOptionsBuilder ( ) . SetStorageEngineOptions ( value ) ;
120
120
}
121
121
122
122
/// <summary>
@@ -276,9 +276,9 @@ public IndexOptionsBuilder SetSparse(bool value)
276
276
/// </summary>
277
277
/// <param name="value">The value.</param>
278
278
/// <returns>The builder (so method calls can be chained).</returns>
279
- public IndexOptionsBuilder SetStorageOptions ( BsonDocument value )
279
+ public IndexOptionsBuilder SetStorageEngineOptions ( BsonDocument value )
280
280
{
281
- _document [ "storageOptions " ] = value ;
281
+ _document [ "storageEngine " ] = value ;
282
282
return this ;
283
283
}
284
284
@@ -460,9 +460,9 @@ public static IndexOptionsBuilder<TDocument> SetSparse(bool value)
460
460
/// </summary>
461
461
/// <param name="value">The value.</param>
462
462
/// <returns>The builder (so method calls can be chained).</returns>
463
- public static IndexOptionsBuilder < TDocument > SetStorageOptions ( BsonDocument value )
463
+ public static IndexOptionsBuilder < TDocument > SetStorageEngineOptions ( BsonDocument value )
464
464
{
465
- return new IndexOptionsBuilder < TDocument > ( ) . SetStorageOptions ( value ) ;
465
+ return new IndexOptionsBuilder < TDocument > ( ) . SetStorageEngineOptions ( value ) ;
466
466
}
467
467
468
468
/// <summary>
@@ -627,9 +627,9 @@ public IndexOptionsBuilder<TDocument> SetSparse(bool value)
627
627
/// </summary>
628
628
/// <param name="value">The value.</param>
629
629
/// <returns>The builder (so method calls can be chained).</returns>
630
- public IndexOptionsBuilder < TDocument > SetStorageOptions ( BsonDocument value )
630
+ public IndexOptionsBuilder < TDocument > SetStorageEngineOptions ( BsonDocument value )
631
631
{
632
- _indexOptionsBuilder . SetStorageOptions ( value ) ;
632
+ _indexOptionsBuilder . SetStorageEngineOptions ( value ) ;
633
633
return this ;
634
634
}
635
635
0 commit comments