File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
tests/MongoDB.Driver.Tests/Linq/Linq3ImplementationTests/Jira Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 16
16
using System . Linq ;
17
17
using FluentAssertions ;
18
18
using MongoDB . Bson ;
19
+ using MongoDB . Driver . Core . Misc ;
20
+ using MongoDB . Driver . Core . TestHelpers . XunitExtensions ;
19
21
using Xunit ;
20
22
21
23
namespace MongoDB . Driver . Tests . Linq . Linq3ImplementationTests . Jira
@@ -25,6 +27,7 @@ public class CSharp4538Tests : Linq3IntegrationTest
25
27
[ Fact ]
26
28
public void Project_with_nullable_value_should_work ( )
27
29
{
30
+ RequireServer . Check ( ) . Supports ( Feature . FindProjectionExpressions ) ;
28
31
var collection = CreateCollection ( ) ;
29
32
30
33
var find = collection
@@ -41,6 +44,7 @@ public void Project_with_nullable_value_should_work()
41
44
[ Fact ]
42
45
public void Project_with_anonymous_class_with_nullable_value_should_work ( )
43
46
{
47
+ RequireServer . Check ( ) . Supports ( Feature . FindProjectionExpressions ) ;
44
48
var collection = CreateCollection ( ) ;
45
49
46
50
var find = collection
You can’t perform that action at this time.
0 commit comments