Updste 海量数据

This commit is contained in:
sunkaixuan 2024-10-31 16:16:29 +08:00
parent b433c5ba3c
commit 93aed32b26

View File

@ -8,6 +8,10 @@ namespace SqlSugar
{
public override string GetDbTypeName(string csharpTypeName)
{
if (csharpTypeName?.StartsWith("ora")==true&& this.Context.CurrentConnectionConfig?.MoreSettings?.DatabaseModel == DbType.Vastbase)
{
return csharpTypeName.Replace("ora", "");
}
if (csharpTypeName == UtilConstants.ByteArrayType.Name)
return "bytea";
if (csharpTypeName.ToLower() == "int32")