1

Entity Framework コンテキストをバインドして、NServicebus メッセージごとにスコープを設定したいと考えています。次のコードはそれを正常に実行できますか?

Bind<IDbContext>().To<MyContext>()
    .InScope(x => x.Kernel.Get<IBus>().CurrentMessageContext.Id);

バックグラウンド

MSMQ キューから IEvents を読み取る複数の IMessageHandlers を持つ NServicebus サービスがあります。

各ハンドラーはメッセージを変換し、Entity Framework コンテキスト上にある特定の IRepository を介して MS SQL データベースに保存します。

各ハンドラが必要とするリポジトリは、NServicebus.ObjectBuilder.Ninject を使用して ninject を介して注入されます。

public class Product
{
    public string Code { get; set; }
    public Category Category { get; set; }
}

public class Category
{
    public string Code { get; set; }
}

public class SampleContext : IDbContext
{
    IDbSet<Product> Products { get; }
    IDbSet<Category> Categories{ get; }
}

public class ProductRepository : IProductRepository
{
    private IDbContext _context;
    public ProductRepository(IDbContext ctx) { _context = ctx; }

    public void Add(Product p)
    {
        _context.Products.Add(p);
        _context.SaveChanges();
    }
}

public class CategoryRepository : ICategoryRepository
{
    private IDbContext _context;
    public CategoryRepository (IDbContext ctx) { _context = ctx; }

    public Category GetByCode(string code)
    {
        return _context.Categories.FirstOrDefault(x => x.Code == code);
    }
}

public class AddProductMessageHandler : IMessageHandler<IAddProductEvent>
{
    private IProductRepository _products;
    private ICategoryRepository _categories;
    public AddProductMessageHandler(IProductRepository p, ICategoryRepository c)
    {
        _products = p;
        _categories = c;
    }

    public void Handle(IAddProductEvent e)
    {
        var p = new Product();
        p.Code = e.ProductCode;
        p.Category = _categories.GetByCode(e.CategoryCode);
        _products.Add(p);
    }
}

問題

EF コンテキストが Transient スコープ (既定) でバインドされている場合、ハンドラー内のバインドされた各リポジトリには、コンテキストの独自のインスタンスがあります。

Bind<IDbContext>().To<SampleContext>();

これにより、あるリポジトリからオブジェクトをロードし、別のリポジトリで保存すると問題が発生します。

同様に、Singleton スコープにバインドされている場合、同じコンテキストがすべてのリポジトリで使用されますが、追跡された変更でゆっくりといっぱいになり、すべての RAM を使い果たします (そして起動がますます遅くなります)。

Bind<IDbContext>().To<SampleContext>().InSingletonScope();

質問

理想的には、各メッセージ ハンドラーに、(そのハンドラーの) 必要なすべてのリポジトリがエンティティの読み込みと保存に使用する 1 つの EF コンテキストを持たせたいと考えています。

コンテキストを現在のメッセージ Id プロパティにスコープすることは、これを行う安全/信頼できる/良い方法ですか?

Bind<IDbContext>().To<SampleContext>()
    .InScope(x => x.Kernel.Get<IBus>().CurrentMessageContext.Id);
4

2 に答える 2

2

NSB 4.0 以外のスコープについて説明している私のブログ投稿を参照してください。

http://www.planetgeek.ch/2013/01/16/nservicebus-unitofworkscope-with-ninject/

3.0 を使用している場合は、現在の開発ブランチを調べて、拡張メソッドをコードに移植できます。スコープ名を変更するだけです。

于 2013-02-20T11:23:35.740 に答える
0

私は EF Context に詳しくないので、以下の回答が意味をなさない場合は無視してください。

EF Context が NH ISession に似ている場合、 NH 実装と同じように UoW を使用する方がよいと思います。
UoW の詳細については、こちらをご覧ください。

于 2013-02-19T22:34:07.143 に答える