Skip to content

Commit

Permalink
v1.5.3 修复 EntitySteering bug;
Browse files Browse the repository at this point in the history
  • Loading branch information
2881099 committed Aug 29, 2022
1 parent f9058c9 commit edcb0e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion FreeSql.Cloud.sln
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "net40_tcc_saga", "examples\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "netcore31_tcc_saga", "examples\netcore31_tcc_saga\netcore31_tcc_saga.csproj", "{82D6631D-A5D1-4AA6-B326-13376B6CB7D4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "net60_webapi", "examples\net60_webapi\net60_webapi.csproj", "{10029FBE-B53F-4E08-9C8B-0C15545A4DB9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "net60_webapi", "examples\net60_webapi\net60_webapi.csproj", "{10029FBE-B53F-4E08-9C8B-0C15545A4DB9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{A8FD726A-0B46-4156-A64D-97323AA53FAB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -46,6 +48,10 @@ Global
{10029FBE-B53F-4E08-9C8B-0C15545A4DB9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{10029FBE-B53F-4E08-9C8B-0C15545A4DB9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{10029FBE-B53F-4E08-9C8B-0C15545A4DB9}.Release|Any CPU.Build.0 = Release|Any CPU
{A8FD726A-0B46-4156-A64D-97323AA53FAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A8FD726A-0B46-4156-A64D-97323AA53FAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A8FD726A-0B46-4156-A64D-97323AA53FAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A8FD726A-0B46-4156-A64D-97323AA53FAB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -55,6 +61,7 @@ Global
{5DE53692-4AE5-4DA5-B2ED-2FA9AEA06AA0} = {12598115-AC36-430B-98D7-3C27D29201D7}
{82D6631D-A5D1-4AA6-B326-13376B6CB7D4} = {12598115-AC36-430B-98D7-3C27D29201D7}
{10029FBE-B53F-4E08-9C8B-0C15545A4DB9} = {12598115-AC36-430B-98D7-3C27D29201D7}
{A8FD726A-0B46-4156-A64D-97323AA53FAB} = {12598115-AC36-430B-98D7-3C27D29201D7}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {932A1C6F-1A3C-4545-BB25-76B228D02D85}
Expand Down
2 changes: 1 addition & 1 deletion src/FreeSql.Cloud/FreeSql.Cloud.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard20;net40</TargetFrameworks>
<Version>1.5.2</Version>
<Version>1.5.3</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>FreeSql;ncc;YeXiangQin</Authors>
<Description>提供跨数据库访问,分布式事务TCC、SAGA解决方案,支持 .NET Core 2.1+, .NET Framework 4.0+.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/FreeSql.Cloud/FreeSqlCloud.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ IFreeSql GetCrudOrm(string methodName, Type entityType)
{
MethodName = methodName,
EntityType = entityType,
AvailableDBKeys = _ib.GetKeys(a => a.Ado.MasterPool.IsAvailable),
AvailableDBKeys = _ib.GetKeys(a => a == null || a.Ado.MasterPool.IsAvailable),
_dbkey = _dbkey
};
EntitySteering(this, args);
Expand Down

0 comments on commit edcb0e1

Please sign in to comment.