This commit is contained in:
sunkaixuan 2019-05-17 22:01:37 +08:00
parent e454fcacac
commit 07b9407a2d

View File

@ -14,7 +14,7 @@ namespace SqlSugar
{ {
get get
{ {
return ""; throw new NotSupportedException();
} }
} }
protected override string GetColumnInfosByTableNameSql protected override string GetColumnInfosByTableNameSql
@ -241,6 +241,14 @@ namespace SqlSugar
#endregion #endregion
#region Methods #region Methods
public override bool CreateDatabase(string databaseDirectory = null)
{
throw new NotSupportedException();
}
public override bool CreateDatabase(string databaseName, string databaseDirectory = null)
{
throw new NotSupportedException();
}
public override bool AddRemark(EntityInfo entity) public override bool AddRemark(EntityInfo entity)
{ {
var db = this.Context; var db = this.Context;