C# 中的linQ to SQL中的更新数据库中的值问题

错误原因:不能添加其键已在使用中的实体。
Customers是实体类
 DataClasses1DataContext dd = new DataClasses1DataContext();
   public static void UpdateRecord(Customers localTable)
        {
            try
            {
 dd.Customers.Attach(localTable);
 dd.Refresh(RefreshMode.KeepCurrentValues, localTable);
 dd.SubmitChanges(ConflictMode.FailOnFirstConflict );
}
不能添加其键已在使用中的实体。请问怎么?

元芳怎么了
浏览 274回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP