web-dev-qa-db-ja.com

2つのオブジェクトが異なるObjectContextオブジェクトにアタッチされているため、2つのオブジェクト間の関係を定義できません

この特定のエラーメッセージに関連するいくつかの質問/回答を読みましたが、適切な解決策がよくわかりません。

私は何度もEF4コンテキストを作成し、それを使用してから破棄する必要があることを読みました。アプリケーション全体で、さまざまなコンテキストオブジェクトを使用してエンティティをあちこちにロードし、最終的にエンティティを関連付けたいと考えています。

エラーが発生しやすいシンプルなコンソールアプリケーションを作成しました。非常に単純なモデルが図示され、その後にコードが続きます。

2つの異なるエンティティに同じコンテキストを共有させるにはどうすればよいですか?新しいコンテキストを作成し、2つのエンティティを再度ロードする必要がありますか(すでに持っている場合でも)、単に関連付けて保存するだけですか?

既存の適切な質問/回答を見逃しただけの場合は、正しい場所を教えてください。

Simple EF4 Model diagram

internal class Program {

    private static void Main(string[] args) {
        DeleteAllEntities();
        CreateInitialEntities();
        Owner o = LoadOwner();
        Child c = LoadChild();
        AssociateAndSave(o, c);
    }

    private static void AssociateAndSave(Owner o, Child c) {
        using (var context = new ModelEntities()) {
            // Exception occurs on the following line.
            o.Children.Add(c);
            context.Attach(o);
            context.SaveChanges();
        }
    }

    private static Owner LoadOwner() {
        using (var context = new ModelEntities()) {
            return ((from o in context.Owners
                     select o).First());
        }
    }

    private static Child LoadChild() {
        using (var context = new ModelEntities()) {
            return ((from c in context.Children
                     select c).First());
        }
    }

    private static void CreateInitialEntities() {
        using (var context = new ModelEntities()) {
            Owner owner = new Owner();
            Child child = new Child();
            context.Owners.AddObject(owner);
            context.Children.AddObject(child);
            context.SaveChanges();
        }
    }

    private static void DeleteAllEntities() {
        using (var context = new ModelEntities()) {
            List<Child> children = (from c in context.Children
                                    select c).ToList();
            foreach (var c in children)
                context.Children.DeleteObject(c);
            List<Owner> owners = (from o in context.Owners
                                  select o).ToList();
            foreach (var o in owners)
                context.Owners.DeleteObject(o);
            context.SaveChanges();
        }
    }
}
21
Steve

同じコンテキストで子オブジェクトと所有者オブジェクトへの参照を取得する必要があります。このためのアプローチは、IDを取得し、それらをパラメーターとしてAssociateAndSave(int oId, int cId)メソッドに渡すことです。

次に、オブジェクトへの参照を取得します同じコンテキスト内で、アタッチメントを作成します。

private static void Main(string[] args)
{
    DeleteAllEntities();
    CreateInitialEntities();
    int oId = LoadOwnerId();
    int cId = LoadChildId();
    AssociateAndSave(oId, cId);
}

private static int LoadOwnerId()
{
    using (var context = new ModelEntities())
    {
        return (from o in context.Owners
                select o).First().Id;
    }
}

private static int LoadChildId()
{
    using (var context = new ModelEntities())
    {
        return (from c in context.Children
                select c).First().Id;
    }
}

private static void AssociateAndSave(int oId, int cId)
{
    using (var context = new ModelEntities())
    {
        var owner = (from o in context.Owners
                        select o).FirstOrDefault(o => o.ID == oId);
        var child = (from o in context.Children
                        select o).FirstOrDefault(c => c.ID == cId);

        owner.Children.Add(child);
        context.Attach(owner);
        context.SaveChanges();
    }
}
19
Alex Filipovici

各コンテキストはオブジェクトを個別に追跡するため、別のコンテキストのインスタンスを使用して、あるコンテキストからオブジェクトを削除することはできません。

1つのアイデアは、各メソッドにコンテキストタイプのパラメーターを提供して、操作が同じコンテキスト内で行われるようにすることです。

例:

private static void CrudOperationExample(DBContext contextInstane)
{
    //perform crud operations.
}

ORMで非常に役立つため、依存性注入を探すことをお勧めします。

4
Freeman