Fix Warnings
Test Rlz
This commit is contained in:
@@ -4,7 +4,9 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal;
|
||||
|
||||
namespace LaDOSE.Api;
|
||||
|
||||
#pragma warning disable EF1001
|
||||
public class NpgsqlSqlGenerationLowercaseHelper : NpgsqlSqlGenerationHelper
|
||||
|
||||
{
|
||||
|
||||
static string ToLowerCase(string input) => input.ToLower();
|
||||
@@ -14,4 +16,5 @@ public class NpgsqlSqlGenerationLowercaseHelper : NpgsqlSqlGenerationHelper
|
||||
=> base.DelimitIdentifier(ToLowerCase(identifier));
|
||||
public override void DelimitIdentifier(StringBuilder builder, string identifier)
|
||||
=> base.DelimitIdentifier(builder, ToLowerCase(identifier));
|
||||
}
|
||||
}
|
||||
#pragma warning restore EF1001
|
||||
Reference in New Issue
Block a user