Prevent EF Core OrderBy warning

This commit is contained in:
Jordan Dominion
2025-08-17 23:20:18 -04:00
parent e3f63cb8d5
commit 0c5f5a3558
@@ -242,6 +242,7 @@ namespace Tgstation.Server.Host.Authority
: null,
() => Queryable(false)
.SelectMany(user => user.OAuthConnections!)
.OrderBy(connection => connection.Provider)
.TagWith("Get User OAuthConnections"));
/// <inheritdoc />
@@ -252,6 +253,7 @@ namespace Tgstation.Server.Host.Authority
: null,
() => Queryable(false)
.SelectMany(user => user.OidcConnections!)
.OrderBy(connection => connection.SchemeKey)
.TagWith("Get User OIdcConnections"));
/// <inheritdoc />