【发布时间】:2011-04-20 10:45:45
【问题描述】:
我在 WCF 上使用 EF Code First。所以当我保存一个实体时,它正在使用一个新的上下文。
如果我检索一个实体,然后更新它以使其引用不同的实体,我发现它与原始外键值一起保存。
例如,我检索了一个 Company 类,其中国家/地区是 UK。然后我将其更改为美国并将其传递回服务。当我检查表格时,FK 仍然设置为英国的。
如何让它更新外键?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Data;
namespace CodeFirstExistingDatabase
{
class Program
{
private const string ConnectionString = @"Server=.\sql2005;Database=CodeFirst2;integrated security=SSPI;";
static void Main(string[] args)
{
// Firstly, create a new country record.
Country country = new Country();
country.Code = "UK";
country.Name = "United Kingdom";
// Create aother new country record.
Country country2 = new Country();
country2.Code = "USA";
country2.Name = "US of A";
// Now create an instance of the context.
MyContext myContext = new MyContext(ConnectionString);
myContext.Entry(country).State = EntityState.Added;
myContext.Entry(country2).State = EntityState.Added;
myContext.SaveChanges();
Console.WriteLine("Saved Countries");
// Now insert a Company record
Company company = new Company();
company.CompanyName = "AccessUK";
company.HomeCountry = myContext.Countries.First(e => e.Code == "UK");
myContext.Companies.Add(company);
myContext.SaveChanges();
Console.WriteLine("Saved Company");
Company savedCompany = myContext.Companies.First(e => e.CompanyName == "AccessUK");
Country usCountry = myContext.Countries.First(e => e.Code == "USA");
savedCompany.HomeCountry = usCountry;
// Create another context for the save (as if we're passing the entity back over WCF and thus
// creating a new context in the service)
MyContext myContext2 = new MyContext(ConnectionString);
myContext2.Entry(savedCompany).State = EntityState.Modified;
myContext2.Entry(savedCompany.HomeCountry).State = EntityState.Modified;
myContext2.SaveChanges();
// When I check the company table, it has the foreign key of the UK Country. It should have
// that of USA.
Console.WriteLine("Finished");
Console.ReadLine();
}
}
public class MyContext
: DbContext
{
public DbSet<Company> Companies { get; set; }
public DbSet<Country> Countries { get; set; }
public MyContext(string connectionString)
: base(connectionString)
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Configurations.Add(new CountryConfiguration());
modelBuilder.Configurations.Add(new CompanyConfiguration());
base.OnModelCreating(modelBuilder);
}
}
public class CompanyConfiguration
: EntityTypeConfiguration<Company>
{
public CompanyConfiguration()
: base()
{
HasKey(p => p.Id);
Property(p => p.Id)
.HasColumnName("Id")
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity)
.IsRequired();
Property(p => p.CompanyName)
.HasColumnName("Name")
.IsRequired();
HasRequired(x => x.HomeCountry).WithMany()
.Map(x => x.MapKey("HomeCountryId"));
ToTable("Companies");
}
}
public class CountryConfiguration
: EntityTypeConfiguration<Country>
{
/// <summary>
/// Initializes a new instance of the <see cref="CountryConfiguration"/> class.
/// </summary>
public CountryConfiguration()
: base()
{
HasKey(p => p.Id);
Property(p => p.Id)
.HasColumnName("Id")
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity)
.IsRequired();
Property(p => p.Code)
.HasColumnName("Code")
.IsRequired();
Property(p => p.Name)
.HasColumnName("Name")
.IsRequired();
ToTable("Countries");
}
}
public class Company
{
public int Id { get; set; }
public string CompanyName { get; set; }
public Country HomeCountry { get; set; }
}
public class Country
{
public int Id { get; set; }
public string Code { get; set; }
public string Name { get; set; }
}
}
非常感谢,
保罗。
【问题讨论】:
标签: wcf entity-framework entity-relationship ef-code-first entity-framework-4.1