代码优先 EF 5 中是否有任何方法可以防止特定实体/表的更新?我们在 WCF Web 服务中使用 EF。我们希望更新发生在其中一个主要对象上,而不是一些子对象上。
这个想法是,如果我们有一个这样的主要对象:
class Person
{
public Address { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
class Address
{
public string City { get; set; }
public string State { get; set; }
}
我们希望更改Person
持久化,但不更改Address
.