Switch DBType to use the fully-qualified type name rather than a simple name

This commit is contained in:
Charles Nurse
2021-05-12 10:22:17 -07:00
parent c926fa0d27
commit 92dd8354ba
15 changed files with 43 additions and 18 deletions

View File

@ -15,6 +15,8 @@ namespace Oqtane.Interfaces
public string Provider { get; }
public string TypeName { get; }
public OperationBuilder<AddColumnOperation> AddAutoIncrementColumn(ColumnsBuilder table, string name);
public string ConcatenateSql(params string[] values);

View File

@ -6,6 +6,8 @@ namespace Oqtane.Models
public string Name { get; set; }
public string Type { get; set; }
public string ControlType { get; set; }
public string DBType { get; set; }
}
}

View File

@ -23,6 +23,8 @@ namespace Oqtane.Shared
public abstract string Provider { get; }
public abstract string TypeName { get; }
public abstract OperationBuilder<AddColumnOperation> AddAutoIncrementColumn(ColumnsBuilder table, string name);
public virtual string ConcatenateSql(params string[] values)