0

我有一个要求

  1. 将数据库查询中的数据源保存到内存中,这样我就可以循环并更新内存中的一些项目。
  2. 我还需要能够将内存中的项目(根据上面第 1 项的结果)保存到xml硬盘驱动器上的文件中。
  3. 最后我需要能够将xml文件加载到内存中。

谁能指出我这样做的最简单方法。这一切都在 Windows 服务中完成。

FAItemsUnderControl fItemsUnderControl = new FAItemsUnderControl(ConfigurationManager.AppSettings["DatabaseConnectionString"]);

//Note the line below is for binding to a gridview which is incorrect in my requirement but illustrates the idea

GridViewItemsUnderControlReport.DataSource = fItemsUnderControl.getItemsUnderControl("systemidtbd", "ALL");
4

1 回答 1

0

我必须在我的服务端声明相同的对象列表

// Get items to Control into running memory
                FAItemsUnderControl fItemsUnderControl = new FAItemsUnderControl(ConfigurationManager.AppSettings["DatabaseConnectionString"]);
                MyGlobals.ListOfItemsToControl = fItemsUnderControl.getItemsUnderControl(MyGlobals.System_ID, "ALL").ToList<Usp_GetListItemsBySystemResult>();
于 2013-01-13T15:25:25.633 回答