Moved custom column list view order by sql variations into syntax providers

This commit is contained in:
AndyButland
2015-06-11 23:46:27 +02:00
parent 58f2694a90
commit a1ae0f70bb
4 changed files with 25 additions and 5 deletions

View File

@@ -69,6 +69,10 @@ namespace Umbraco.Core.Persistence.SqlSyntax
bool SupportsIdentityInsert();
bool? SupportsCaseInsensitiveQueries(Database db);
string IsNull { get; }
string ConvertIntegerToOrderableString { get; }
string ConvertDateToOrderableString { get; }
IEnumerable<string> GetTablesInSchema(Database db);
IEnumerable<ColumnInfo> GetColumnsInSchema(Database db);
IEnumerable<Tuple<string, string>> GetConstraintsPerTable(Database db);