|
.NET框架4.0的發(fā)行推出了許多優(yōu)秀的增強(qiáng)功能,其中當(dāng)首推ADO.NET實(shí)體框架。該框架已經(jīng)克服了以前的許多錯(cuò)誤,并提供了一組增強(qiáng)的API,其中包括許多新的LINQ to SQL框架方面的改善。在本文中,我們將使用這些API的功能來(lái)創(chuàng)建一個(gè)通用版本的數(shù)據(jù)倉(cāng)庫(kù)。
一、實(shí)體框架概述
實(shí)體框架針對(duì)數(shù)據(jù)模型提供了一些更方便的操作方法。默認(rèn)情況下,設(shè)計(jì)器可以生成一個(gè)描述數(shù)據(jù)庫(kù)的模型。
盡管表格間的映射未必都是1:1的映射。每個(gè)表格使用一個(gè)ObjectSet加以描述,進(jìn)而ObjectSet對(duì)象又提供了相應(yīng)的方法來(lái)創(chuàng)建、更新或反射實(shí)體和實(shí)體間的關(guān)系。實(shí)體框架使用一個(gè)實(shí)體鍵(這是一個(gè)看上去像EntitySet=Customers;CustomerID=4的值)來(lái)唯一標(biāo)識(shí)模型內(nèi)的一個(gè)實(shí)體及其標(biāo)識(shí)符。使用實(shí)體鍵,我們就有了一個(gè)方法來(lái)更新對(duì)象、從數(shù)據(jù)庫(kù)中查詢(xún)的對(duì)象,等等。
二、創(chuàng)建和更新
讓我們首先來(lái)看一個(gè)基類(lèi)示例倉(cāng)庫(kù)的實(shí)現(xiàn)。我想分別地討論CRUD操作,首先來(lái)學(xué)習(xí)創(chuàng)建和更新操作。
清單1:創(chuàng)建/更新操作
1. public abstract class BaseRepository<T> : IRepository<T>
2. where T : EntityObject
3. {
4. public virtual bool CreateNew(T entity)
5. {
6. if (entity == null)
7. throw new ArgumentNullException("entity");
8. var ctx = CreateContext();
9. try
10. {
11. ctx.AddObject(this.GetFullEntitySetName(ctx), entity);
12. ctx.SaveChanges();
13. return true;
14. }
15. catch (Exception ex) { .. }
16. }
17. protected abstract string GetEntitySetName(AdventureWorksObjectContext context);
18. public virtual bool Update(T entity)
19. {
20. if (entity == null)
21. throw new ArgumentNullException("entity");
22. var ctx = CreateContext();
23. entity.EntityKey = ctx.CreateEntityKey(this.GetFullEntitySetName(ctx),
24. entity);
25. try
26. {
27. T oldEntity = (T)ctx.GetObjectByKey(entity.EntityKey);
28. if (oldEntity == null) return false;
29. ctx.ApplyCurrentValues(this.GetFullEntitySetName(ctx), entity);
30. ctx.SaveChanges();
31. return true;
32. }
33. catch (Exception ex) { .. }
34. }
}
NET技術(shù):詳解ASP.NET MVC 2中的新ADO.NET實(shí)體框架,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。