Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/EfOrderBy/RequiredOrder.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
static class RequiredOrder
{
static ConcurrentBag<Type> validated = [];
static ConcurrentDictionary<Type, bool> validated = [];

public static void Validate(DbContext context)
{
var contextType = context.GetType();

// Only check and validate once per DbContext type
if (validated.Contains(contextType))
if (validated.ContainsKey(contextType))
{
return;
}

validated.Add(contextType);
validated.TryAdd(contextType, true);

// Check if this DbContext requires ordering for all entities (opt-in feature)
var requireOrdering = context.GetService<IDbContextOptions>()
Expand Down
Loading