这是我的代码:
if (!appdb.DatabaseExists())
{
appdb.CreateDatabase();
}
var income = from p in appdb.Incomes select p.Amount;
var expense = from q in appdb.Expenses select q.eAmount;
double di = 0;
if (income != null)
{
foreach (var i in income)
{
di += i;
}
}
double de = 0;
if (expense != null)
{
foreach (var d in expense)
{
de += d;
}
}
appdb(收入和费用)中有两个表具有相同的列。我可以从Income表中插入和检索数据,但在foreach(var d in expense)
收到错误。错误消息是“指定的表不存在。[费用]”和错误代码是“-2147467259”。请!可以解释为什么我会收到这个错误。