Skip to content

Commit

Permalink
更新SqlSugarCore
Browse files Browse the repository at this point in the history
  • Loading branch information
DotNetNext committed Jan 10, 2024
1 parent eb7f382 commit 88249fc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion SoEasyPlatform/Models/Dal/Repository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ public static SqlSugarClient GetInstance(DbType type,string connection)
DbType = type,
InitKeyType = InitKeyType.Attribute,
IsAutoCloseConnection = true,
ConnectionString = connection
ConnectionString = connection
}, db => {
db.Aop.OnLogExecuting = (s, p) =>
{
Console.WriteLine(s);
};
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion SoEasyPlatform/SoEasyPlatform.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.26" />
<PackageReference Include="SharpZipLib" Version="1.3.3" />
<PackageReference Include="SqlSugar.IOC" Version="1.8.0" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.62-preview11" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.132" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
<PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("SoEasyPlatform")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+eb7f38223922b253bdfee660d355d75aa0e28bcc")]
[assembly: System.Reflection.AssemblyProductAttribute("SoEasyPlatform")]
[assembly: System.Reflection.AssemblyTitleAttribute("SoEasyPlatform")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2ee8e0c6d8e6e60bd08bce05b2ccf5cf693364c2
41df425df40732f312b80a0dafdb7ffeef42292481ff7755525c569a088a34d1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
55ed3b8b73c85f29dc924e92284e56d6e85de9d9
f258a7ec07f76c1fde49e54ef8d509478774b07878d66a4d6b2c586dc1a9263a

0 comments on commit 88249fc

Please sign in to comment.