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
1d5e4f6d32
commit
c7175d7ecf
@ -71,7 +71,12 @@ namespace SqlSugar.Access
|
||||
if (parameters.HasValue())
|
||||
{
|
||||
OleDbParameter[] ipars = GetSqlParameter(parameters);
|
||||
if (ipars != null)
|
||||
{
|
||||
ipars = ipars.OrderBy(it => sql.IndexOf(it.ParameterName)).ToArray();
|
||||
}
|
||||
sqlCommand.Parameters.AddRange(ipars);
|
||||
|
||||
}
|
||||
CheckConnection();
|
||||
return sqlCommand;
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<Version>1.1.0</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<package >
|
||||
<metadata>
|
||||
<id>SqlSugar.AccessCore</id>
|
||||
<version>1.0</version>
|
||||
<version>1.1</version>
|
||||
<authors>sunkaixuan</authors>
|
||||
<owners>Landa</owners>
|
||||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
||||
|
Loading…
Reference in New Issue
Block a user