Skip to content

Commit

Permalink
Merge pull request #36 from Fat-Snail/master
Browse files Browse the repository at this point in the history
完善了DAL需要重置表检查的需求
  • Loading branch information
nnhy authored Sep 18, 2024
2 parents d0661e8 + 6cc3c1b commit ff19e1d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions XCode/DataAccessLayer/DAL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ public static DAL Create(String connName)
return dal;
}

private void Reset()
/// <summary>
/// 重置Dal,注意,此操作会引起表结构重新检查,用于删除表后再次执行表检查,适用于一些删库删表需要重新建表的操作
/// </summary>
public void Reset()
{
_Db.TryDispose();

Expand Down Expand Up @@ -885,4 +888,4 @@ public IList<IDataTable> ModelTables
set => _ModelTables = value;
}
#endregion
}
}

0 comments on commit ff19e1d

Please sign in to comment.