We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d4661 commit 93a3494Copy full SHA for 93a3494
tests/MongoDB.Driver.Tests/Linq/Linq3Implementation/Jira/CSharp4586Tests.cs
@@ -14,6 +14,8 @@
14
*/
15
16
using FluentAssertions;
17
+using MongoDB.Driver.Core.Misc;
18
+using MongoDB.Driver.Core.TestHelpers.XunitExtensions;
19
using Xunit;
20
21
#if NET6_0_OR_GREATER
@@ -114,6 +116,7 @@ public void Project_View2_with_empty_initializer_should_work()
114
116
[Fact]
115
117
public void Project_View2_with_initializer_should_work()
118
{
119
+ RequireServer.Check().Supports(Feature.FindProjectionExpressions);
120
var collection = CreateCollection();
121
var id = "a";
122
var filter = Builders<Model>.Filter.Eq(m => m.Id, id);
0 commit comments