@@ -62,7 +62,7 @@ public static QueryConditionList All(string name, BsonArray values)
62
62
/// Tests that the named array element contains all of the values (see $all).
63
63
/// </summary>
64
64
/// <param name="name">The name of the element to test.</param>
65
- /// <param name="values">The values to compare to.</param>
65
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
66
66
/// <returns>The builder (so method calls can be chained).</returns>
67
67
public static QueryConditionList All ( string name , IEnumerable < BsonValue > values )
68
68
{
@@ -81,7 +81,7 @@ public static QueryConditionList All(string name, IEnumerable<BsonValue> values)
81
81
/// Tests that the named array element contains all of the values (see $all).
82
82
/// </summary>
83
83
/// <param name="name">The name of the element to test.</param>
84
- /// <param name="values">The values to compare to.</param>
84
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
85
85
/// <returns>The builder (so method calls can be chained).</returns>
86
86
public static QueryConditionList All ( string name , params BsonValue [ ] values )
87
87
{
@@ -242,7 +242,7 @@ public static QueryConditionList In(string name, BsonArray values)
242
242
/// Tests that the value of the named element is equal to one of a list of values (see $in).
243
243
/// </summary>
244
244
/// <param name="name">The name of the element to test.</param>
245
- /// <param name="values">The values to compare to.</param>
245
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
246
246
/// <returns>The builder (so method calls can be chained).</returns>
247
247
public static QueryConditionList In ( string name , IEnumerable < BsonValue > values )
248
248
{
@@ -261,7 +261,7 @@ public static QueryConditionList In(string name, IEnumerable<BsonValue> values)
261
261
/// Tests that the value of the named element is equal to one of a list of values (see $in).
262
262
/// </summary>
263
263
/// <param name="name">The name of the element to test.</param>
264
- /// <param name="values">The values to compare to.</param>
264
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
265
265
/// <returns>The builder (so method calls can be chained).</returns>
266
266
public static QueryConditionList In ( string name , params BsonValue [ ] values )
267
267
{
@@ -480,7 +480,7 @@ public static QueryConditionList NotIn(string name, BsonArray values)
480
480
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
481
481
/// </summary>
482
482
/// <param name="name">The name of the element to test.</param>
483
- /// <param name="values">The values to compare to.</param>
483
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
484
484
/// <returns>The builder (so method calls can be chained).</returns>
485
485
public static QueryConditionList NotIn ( string name , IEnumerable < BsonValue > values )
486
486
{
@@ -499,7 +499,7 @@ public static QueryConditionList NotIn(string name, IEnumerable<BsonValue> value
499
499
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
500
500
/// </summary>
501
501
/// <param name="name">The name of the element to test.</param>
502
- /// <param name="values">The values to compare to.</param>
502
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
503
503
/// <returns>The builder (so method calls can be chained).</returns>
504
504
public static QueryConditionList NotIn ( string name , params BsonValue [ ] values )
505
505
{
@@ -877,7 +877,7 @@ public QueryConditionList All(BsonArray values)
877
877
/// <summary>
878
878
/// Tests that the named array element contains all of the values (see $all).
879
879
/// </summary>
880
- /// <param name="values">The values to compare to.</param>
880
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
881
881
/// <returns>The builder (so method calls can be chained).</returns>
882
882
public QueryConditionList All ( IEnumerable < BsonValue > values )
883
883
{
@@ -892,7 +892,7 @@ public QueryConditionList All(IEnumerable<BsonValue> values)
892
892
/// <summary>
893
893
/// Tests that the named array element contains all of the values (see $all).
894
894
/// </summary>
895
- /// <param name="values">The values to compare to.</param>
895
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
896
896
/// <returns>The builder (so method calls can be chained).</returns>
897
897
public QueryConditionList All ( params BsonValue [ ] values )
898
898
{
@@ -978,7 +978,7 @@ public QueryConditionList In(BsonArray values)
978
978
/// <summary>
979
979
/// Tests that the value of the named element is equal to one of a list of values (see $in).
980
980
/// </summary>
981
- /// <param name="values">The values to compare to.</param>
981
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
982
982
/// <returns>The builder (so method calls can be chained).</returns>
983
983
public QueryConditionList In ( IEnumerable < BsonValue > values )
984
984
{
@@ -993,7 +993,7 @@ public QueryConditionList In(IEnumerable<BsonValue> values)
993
993
/// <summary>
994
994
/// Tests that the value of the named element is equal to one of a list of values (see $in).
995
995
/// </summary>
996
- /// <param name="values">The values to compare to.</param>
996
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
997
997
/// <returns>The builder (so method calls can be chained).</returns>
998
998
public QueryConditionList In ( params BsonValue [ ] values )
999
999
{
@@ -1122,7 +1122,7 @@ public QueryConditionList NotIn(BsonArray values)
1122
1122
/// <summary>
1123
1123
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
1124
1124
/// </summary>
1125
- /// <param name="values">The values to compare to.</param>
1125
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1126
1126
/// <returns>The builder (so method calls can be chained).</returns>
1127
1127
public QueryConditionList NotIn ( IEnumerable < BsonValue > values )
1128
1128
{
@@ -1137,7 +1137,7 @@ public QueryConditionList NotIn(IEnumerable<BsonValue> values)
1137
1137
/// <summary>
1138
1138
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
1139
1139
/// </summary>
1140
- /// <param name="values">The values to compare to.</param>
1140
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1141
1141
/// <returns>The builder (so method calls can be chained).</returns>
1142
1142
public QueryConditionList NotIn ( params BsonValue [ ] values )
1143
1143
{
@@ -1283,7 +1283,7 @@ public QueryNotConditionList All(BsonArray values)
1283
1283
/// <summary>
1284
1284
/// Tests that the named array element contains all of the values (see $all).
1285
1285
/// </summary>
1286
- /// <param name="values">The values to compare to.</param>
1286
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1287
1287
/// <returns>The builder (so method calls can be chained).</returns>
1288
1288
public QueryNotConditionList All ( IEnumerable < BsonValue > values )
1289
1289
{
@@ -1297,7 +1297,7 @@ public QueryNotConditionList All(IEnumerable<BsonValue> values)
1297
1297
/// <summary>
1298
1298
/// Tests that the named array element contains all of the values (see $all).
1299
1299
/// </summary>
1300
- /// <param name="values">The values to compare to.</param>
1300
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1301
1301
/// <returns>The builder (so method calls can be chained).</returns>
1302
1302
public QueryNotConditionList All ( params BsonValue [ ] values )
1303
1303
{
@@ -1377,7 +1377,7 @@ public QueryNotConditionList In(BsonArray values)
1377
1377
/// <summary>
1378
1378
/// Tests that the value of the named element is equal to one of a list of values (see $in).
1379
1379
/// </summary>
1380
- /// <param name="values">The values to compare to.</param>
1380
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1381
1381
/// <returns>The builder (so method calls can be chained).</returns>
1382
1382
public QueryNotConditionList In ( IEnumerable < BsonValue > values )
1383
1383
{
@@ -1391,7 +1391,7 @@ public QueryNotConditionList In(IEnumerable<BsonValue> values)
1391
1391
/// <summary>
1392
1392
/// Tests that the value of the named element is equal to one of a list of values (see $in).
1393
1393
/// </summary>
1394
- /// <param name="values">The values to compare to.</param>
1394
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1395
1395
/// <returns>The builder (so method calls can be chained).</returns>
1396
1396
public QueryNotConditionList In ( params BsonValue [ ] values )
1397
1397
{
@@ -1472,7 +1472,7 @@ public QueryNotConditionList NotIn(BsonArray values)
1472
1472
/// <summary>
1473
1473
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
1474
1474
/// </summary>
1475
- /// <param name="values">The values to compare to.</param>
1475
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1476
1476
/// <returns>The builder (so method calls can be chained).</returns>
1477
1477
public QueryNotConditionList NotIn ( IEnumerable < BsonValue > values )
1478
1478
{
@@ -1486,7 +1486,7 @@ public QueryNotConditionList NotIn(IEnumerable<BsonValue> values)
1486
1486
/// <summary>
1487
1487
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
1488
1488
/// </summary>
1489
- /// <param name="values">The values to compare to.</param>
1489
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1490
1490
/// <returns>The builder (so method calls can be chained).</returns>
1491
1491
public QueryNotConditionList NotIn ( params BsonValue [ ] values )
1492
1492
{
@@ -1571,7 +1571,7 @@ public QueryNotConditionList All(BsonArray values)
1571
1571
/// <summary>
1572
1572
/// Tests that the named array element contains all of the values (see $all).
1573
1573
/// </summary>
1574
- /// <param name="values">The values to compare to.</param>
1574
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1575
1575
/// <returns>The builder (so method calls can be chained).</returns>
1576
1576
public QueryNotConditionList All ( IEnumerable < BsonValue > values )
1577
1577
{
@@ -1586,7 +1586,7 @@ public QueryNotConditionList All(IEnumerable<BsonValue> values)
1586
1586
/// <summary>
1587
1587
/// Tests that the named array element contains all of the values (see $all).
1588
1588
/// </summary>
1589
- /// <param name="values">The values to compare to.</param>
1589
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1590
1590
/// <returns>The builder (so method calls can be chained).</returns>
1591
1591
public QueryNotConditionList All ( params BsonValue [ ] values )
1592
1592
{
@@ -1672,7 +1672,7 @@ public QueryNotConditionList In(BsonArray values)
1672
1672
/// <summary>
1673
1673
/// Tests that the value of the named element is equal to one of a list of values (see $in).
1674
1674
/// </summary>
1675
- /// <param name="values">The values to compare to.</param>
1675
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1676
1676
/// <returns>The builder (so method calls can be chained).</returns>
1677
1677
public QueryNotConditionList In ( IEnumerable < BsonValue > values )
1678
1678
{
@@ -1687,7 +1687,7 @@ public QueryNotConditionList In(IEnumerable<BsonValue> values)
1687
1687
/// <summary>
1688
1688
/// Tests that the value of the named element is equal to one of a list of values (see $in).
1689
1689
/// </summary>
1690
- /// <param name="values">The values to compare to.</param>
1690
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1691
1691
/// <returns>The builder (so method calls can be chained).</returns>
1692
1692
public QueryNotConditionList In ( params BsonValue [ ] values )
1693
1693
{
@@ -1774,7 +1774,7 @@ public QueryNotConditionList NotIn(BsonArray values)
1774
1774
/// <summary>
1775
1775
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
1776
1776
/// </summary>
1777
- /// <param name="values">The values to compare to.</param>
1777
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1778
1778
/// <returns>The builder (so method calls can be chained).</returns>
1779
1779
public QueryNotConditionList NotIn ( IEnumerable < BsonValue > values )
1780
1780
{
@@ -1789,7 +1789,7 @@ public QueryNotConditionList NotIn(IEnumerable<BsonValue> values)
1789
1789
/// <summary>
1790
1790
/// Tests that the value of the named element is not equal to any of a list of values (see $nin).
1791
1791
/// </summary>
1792
- /// <param name="values">The values to compare to.</param>
1792
+ /// <param name="values">The values to compare to (nulls are ignored) .</param>
1793
1793
/// <returns>The builder (so method calls can be chained).</returns>
1794
1794
public QueryNotConditionList NotIn ( params BsonValue [ ] values )
1795
1795
{
0 commit comments