Skip to content

Commit

Permalink
修正ResetTable之后action.Data.Conn属性
Browse files Browse the repository at this point in the history
  • Loading branch information
cyq1162 committed Apr 25, 2018
1 parent e4c4599 commit c47d0f3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Action/MAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,10 @@ private void InitConn(object tableObj, string conn, out MDataRow newRow)
{
newRow.Conn = conn;
}
else if (_Data != null)//新加的处理
{
newRow.Conn = _Data.Conn;
}
_sourceTableName = newRow.TableName;
}
private void InitSqlHelper(MDataRow newRow, string newDbName)
Expand Down

0 comments on commit c47d0f3

Please sign in to comment.