Start work on nullable-reference types in Infrastructure project

This commit is contained in:
Nikolaj Geisle
2022-02-18 14:32:51 +01:00
parent cb3e7706a8
commit b442a60403
199 changed files with 641 additions and 596 deletions

View File

@@ -24,9 +24,9 @@ namespace Umbraco.Cms.Infrastructure.Persistence.SqlSyntax
string GetStringColumnWildcardComparison(string column, int paramIndex, TextColumnType columnType);
string GetConcat(params string[] args);
string GetQuotedTableName(string tableName);
string GetQuotedColumnName(string columnName);
string GetQuotedName(string name);
string GetQuotedTableName(string? tableName);
string GetQuotedColumnName(string? columnName);
string GetQuotedName(string? name);
bool DoesTableExist(IDatabase db, string tableName);
string GetIndexType(IndexTypes indexTypes);
string GetSpecialDbType(SpecialDbType dbType);