mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 15:07:03 +01:00
Prevent EF Core OrderBy warning
This commit is contained in:
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user