我在实体框架方面遇到了非常奇怪的问题。我正在使用实体框架将数据保存到数据库中。当我调用 SaveChanges() 方法时,数据正在保存到数据库中,我什至可以在 SQL 中看到我在数据库中的更新。但是当我关闭我的应用程序并重新打开数据时,数据库中的数据将会丢失,并且它显示的是我第一次保存之前的数据。即使我在应用程序中选择不同的记录并保存,也会发生这种情况,那么以前的记录数据将会丢失。我已经尝试了所有可能的选择,没有任何帮助。
下面是代码片段。
AxRetailPosDb context = new AxRetailPosDb(DbContextHelper.DbContextConnectionString(this.Application.Settings.Database.Connection.ConnectionString));
bool flag = false;
try
{
CUSTTABLE cust = context.CUSTTABLEs.Where(c => c.ACCOUNTNUM == customer.CustomerId).FirstOrDefault();
DIRPARTYTABLE dirpartytbl = context.DIRPARTYTABLEs.Where(p => p.RECID == cust.PARTY).FirstOrDefault();
if (cust != null)
{
cust.IGNDELIVERYCODE = cusEextView.DeliveryCode;
if (cusEextView.Birthday != null && cusEextView.Birthday != Convert.ToDateTime("01-01-0001"))
{
cust.IGNBIRTHDATE = Convert.ToDateTime(cusEextView.Birthday.ToShortDateString());
}
cust.IGNMODELSCORE = cusEextView.Modelscore;
cust.CREDITMAX = cusEextView.ChargeLimit;
if (cusEextView.Gender != null)
{
cust.IGNGENDER = (int)Enum.Parse(typeof(Microsoft.Dynamics.Retail.Pos.Customer.WinFormsTouch.frmNewCustomer.Gender), cusEextView.Gender);
}
}
if (dirpartytbl != null)
{
dirpartytbl.LANGUAGEID = customer.Language;
}
context.SaveChanges();
}
catch
{
}
finally
{
if (context != null)
{
context.Dispose();
}
}
任何建议将不胜感激。