我正在尝试获取存储在本地数据库中的数据。我正在使用这样的东西:
// 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的新手,如果这是正确的方法,我不会这样做。我的查询是错误的,还是我做得不好?
答案 0 :(得分:0)