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 2cbfc91 commit f0156caCopy full SHA for f0156ca
samples/WeihanLi.EntityFramework.Sample/Program.cs
@@ -240,15 +240,15 @@ private static void RepositoryTest()
240
241
var abc = db.TestEntities.AsNoTracking().ToArray();
242
Console.WriteLine($"{string.Join(Environment.NewLine, abc.Select(_ => _.ToJson()))}");
243
-
+
244
var entities = repo.Query(q => q.IgnoreQueryFilters(["not-null"]))
245
.ToArray();
246
Console.WriteLine(entities.Length);
247
248
entities = repo.Query(q => q.IgnoreQueryFilters())
249
250
251
252
var data = repo.Query(q => q.WithPredictIf(f => f.Id > 0, false)).ToArray();
253
Console.WriteLine(JsonSerializer.Serialize(data));
254
0 commit comments