我的C#WinForms应用程序需要在运行数据库过程中更新网格控件内容,该过程正在将日志写入DB中的表。当前,我在代码中一一运行两种方法:
{
RunDBProcess(); // running for several minutes, writing to DB log table
FillDataSetTableAndUpdateGrid(); // reading DB log table and updating grid
}
它工作正常,但是我需要在运行DB进程期间而不是完成之后更新网格中的数据。 好像我必须在不同的线程中运行第二个方法,也许创建一些循环?任何建议和代码示例将不胜感激。