我正在使用EF4.0编写DAL类,我已阅读
http://www.codeproject.com/Articles/43367/ADO-NET-Entity-Framework-as-Data-Access-Layer
和
http://msdn.microsoft.com/en-us/magazine/cc700340.aspx
但是当我测试他们的代码时,我遇到了Update和Delete方法的一些问题。
DAL类的所有代码如下:
public class FriendlinkDA : IDisposable
{
private EdiBlogEntities context;
public FriendlinkDA()
{
context = new EdiBlogEntities();
}
public void Dispose()
{
context.Dispose();
}
public FriendLink GetFriendLink(Guid id)
{
return context.FriendLink.FirstOrDefault(f => f.Id == id);
}
public void Update(FriendLink model)
{
// Way 1: (throw exception)
//context.Attach(model);
//model.SetAllModified(context);
//context.SaveChanges();
// Way 2:
EntityKey key;
object originalItem;
key = context.CreateEntityKey("FriendLink", model);
if (context.TryGetObjectByKey(key, out originalItem))
{
context.ApplyCurrentValues(key.EntitySetName, model);
//context.ApplyPropertyChanges(key.EntitySetName, model);
}
context.SaveChanges();
}
public void Delete(FriendLink model)
{
// Way 1:
context.Attach(model);
context.DeleteObject(model);
context.SaveChanges();
// Way 2:
//var item = context.FriendLink.FirstOrDefault(f => f.Id == model.Id);
//context.DeleteObject(item);
//context.SaveChanges();
}
}
扩展方法是:
public static void SetAllModified<T>(this T entity, ObjectContext context) where T : IEntityWithKey
{
var stateEntry = context.ObjectStateManager.GetObjectStateEntry(entity.EntityKey);
var propertyNameList = stateEntry.CurrentValues.DataRecordInfo.FieldMetadata.Select
(pn => pn.FieldType.Name);
foreach (var propName in propertyNameList)
stateEntry.SetModifiedProperty(propName);
}
在应用程序中,我使用这样的DAL:
// Delete
using (var optFriendlink = new FriendlinkDA())
{
var test = optFriendlink.GetFriendLink(new Guid("81F58198-D396-41DE-A240-FC306C7343E8"));
optFriendlink.Delete(test);
}
// Update
using (var optFriendlink = new FriendlinkDA())
{
var testLink = optFriendlink.GetFriendLink(new Guid("62FD0ACF-40C3-4BAD-B438-38BB540A6080"));
testLink.Title = "ABC";
optFriendlink.Update(testLink);
}
问题1:
在Delete()中,方式1和方式2都可以工作。哪一个更好?
问题2:
在Update()中,方式1给出了一个例外:无法附加对象,因为它已经在对象上下文中。只有当对象处于未更改状态时才能重新附加对象。
关于此声明: context.Attach(模型);
但是方式2很好。
为什么会这样?我还在Delete()中附加模型,为什么Delete()工作正常?我怎样才能正确地写出更新?
答案 0 :(得分:1)
例外说明了一切:
只有当对象处于未更改状态时才能重新附加对象。
您在// Update
下的代码段中更改了对象,这就是无法重新附加的原因。
哪种方法更好。通常,您将从上下文中获取对象,处理上下文,对对象执行某些操作,然后使用新上下文来保存对象。在这种情况下,使用Attach
比首先通过Id获取对象要舒服得多。