mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Update nuget
This commit is contained in:
parent
bb56f566c2
commit
1b5bf254f6
@ -45,7 +45,7 @@ namespace SqlSugar.Odbc
|
|||||||
.MappingTables
|
.MappingTables
|
||||||
.FirstOrDefault(it => it.EntityName.Equals(name, StringComparison.CurrentCultureIgnoreCase));
|
.FirstOrDefault(it => it.EntityName.Equals(name, StringComparison.CurrentCultureIgnoreCase));
|
||||||
name = (mappingInfo == null ? name : mappingInfo.DbTableName);
|
name = (mappingInfo == null ? name : mappingInfo.DbTableName);
|
||||||
if (name.IsContainsIn("(", ")", SqlTranslationLeft))
|
if (string.IsNullOrEmpty(SqlTranslationLeft)&&name.IsContainsIn("(", ")", SqlTranslationLeft))
|
||||||
{
|
{
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.1</TargetFramework>
|
<TargetFramework>netstandard2.1</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
<Copyright>5.1.4.150</Copyright>
|
||||||
|
<Version>5.1.4.150</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<package >
|
<package >
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>SqlSugar.OdbcCore</id>
|
<id>SqlSugar.OdbcCore</id>
|
||||||
<version>5.1.4.2</version>
|
<version>5.1.4.150</version>
|
||||||
<authors>sunkaixuan</authors>
|
<authors>sunkaixuan</authors>
|
||||||
<owners>Landa</owners>
|
<owners>Landa</owners>
|
||||||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
||||||
@ -11,7 +11,7 @@
|
|||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
<description> SqlSugar 通过ODBC连接数据库 </description>
|
<description> SqlSugar 通过ODBC连接数据库 </description>
|
||||||
<copyright>Copyright 2016</copyright>
|
<copyright>Copyright 2016</copyright>
|
||||||
<tags>Asp.net core orm</tags>
|
<tags>Asp.net core orm odbc</tags>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<group targetFramework=".NETStandard2.1">
|
<group targetFramework=".NETStandard2.1">
|
||||||
<dependency id="System.Data.Odbc" version="4.6" />
|
<dependency id="System.Data.Odbc" version="4.6" />
|
||||||
|
Loading…
Reference in New Issue
Block a user