Skip to content

Commit

Permalink
646:修正:AppConfig.GetConn 方法【解决NetCore下提示找不到Conn项的问题】。(2021-04-20)【V5.…
Browse files Browse the repository at this point in the history
…8.3.9】
  • Loading branch information
cyq1162 committed May 20, 2021
1 parent d2489bd commit acc8823
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Action/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ public static string GetConn(string name)
{
return name;
}
if (name == "Conn" && name != DB.DefaultConn)
{
return GetConn(DB.DefaultConn);
}
return "";
}

Expand Down
4 changes: 3 additions & 1 deletion UpdateLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -865,4 +865,6 @@
643���޸������������ʽXXXX..[TTTT]���ɵ�hashkey��⣨��Ӱ����Ƿ���ڵ��жϣ���(2021-04-02)
644���Ż�������ϸ�ڣ�����ʾConn�Ҳ��� �� SqlInjection error:Index was outside��(2021-04-15)
645���Ż���MDataTable.AcceptChange �������ز���������ָ�����񼶱�(2021-04-23)
646���������ֲ�ʽ���桾Hash��ͬCPU������һ�¡�������(2021-05-18)
646���������ֲ�ʽ���桾Hash��ͬCPU������һ�¡�������(2021-05-18)
------------------------------------------------------------------------------
646��������AppConfig.GetConn ���������NetCore����ʾ�Ҳ���Conn������⡿��(2021-04-20)��V5.8.3.9��

0 comments on commit acc8823

Please sign in to comment.