Update GBase

This commit is contained in:
sunkaixuan
2022-08-28 14:32:34 +08:00
parent 1eae189b6e
commit 8ef4d41b15
3 changed files with 12 additions and 6 deletions

View File

@@ -18,7 +18,12 @@ namespace SqlSugar.GBase
}
public override string SqlTranslationLeft { get { return ""; } }
public override string SqlTranslationRight { get { return ""; } }
public override bool IsTranslationText(string name)
{
var result = name.IsContainsIn( UtilConstants.Space,"(",")");
return result;
}
public override string GetLimit() { return ""; }
}
public partial class GBaseMethod : DefaultDbMethod, IDbMethods
{