Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

完善了DAL需要重置表检查的需求 #36

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}
Loading