Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

namespace SharedCode.Data.EntityFramework.Specifications.Evaluators;

using Microsoft.EntityFrameworkCore;

using SharedCode.Specifications;
using SharedCode.Specifications.Evaluators;

Expand Down Expand Up @@ -33,7 +35,7 @@ public IQueryable<T> GetQuery<T>(IQueryable<T> query, ISpecification<T> specific

if (specification.AsSplitQuery)
{
//query = query.AsSplitQuery(); // TODO: Support for split query is not in the current EF Core version. See https://github.com/dotnet/efcore/issues/21234
query = query.AsSplitQuery();
}

return query;
Expand Down
Loading