从本地数据库中选择数据

本文关键字:选择 数据 数据库 | 更新日期: 2023-09-27 17:53:29

我正试图获得存储在本地数据库中的数据。我用的是这样的东西:

// Connect to the database and instantiate data context.
tablesDB = new TablesDataContext(TablesDataContext.DBConnectionString);    
// Define the query to gather all of the items.
var CategoriesTablesInDB = from CategoryItem todo in tablesDB.CategoriesTable
                                           select todo;
// Execute the query and place the results into a collection.
CategoriesTable = new ObservableCollection<CategoryItem>(CategoriesTablesInDB);

但是我的CategoriesTable有计数= 0后这样做,CategoriesTablesInDB有它的sql查询里面。我是Windows Phone的新手,我不知道这样做是否正确。是我的查询有问题,还是我做得不对?

从本地数据库中选择数据

遗憾的是,我不能给你确切的答案。但如果你刚刚开始,你也可以尝试在SQLite中存储数据,而不是本地数据库。它可以帮助您在未来构建跨平台应用程序,并拥有广泛的社区支持。