EntityFramework 6.x学习之多个上下文迁移实现分布式事务详解
前言
自从项目上了.net core平台用上了entityframework core就再没碰过entityframework 6.x版本,目前而言entityframework 6.x是用的最多,无论是找工作而言还是提升自身技术而言皆自身收益,同时呢,大多数时间除了工作之外,还留有一小部分时间在写entityframework 6.x和entityframework core的书籍,所以将entityframework 6.x相当于是从零学起,entityframework 6.x又添加了许多特性,所以花了一些时间去看并整理了下来,本节相当于是自己一直未碰到过的问题,于是花了一点时间在多个上下文迁移到不同数据库并实现分布式事务上,作为基础入口且同步于书籍,供阅读者学习也是我的点滴积累,文章如有错误,请指正。
模型建立
在开始entityframework 6.x内容叙述之前,我们还是老套路,首先准备模型,我们搞一个预约航班的基本模型,一个是航班实体,另外一个为预约实体,请看如下:
/// <summary> /// 航班 /// </summary> public class flightbooking { /// <summary> /// 航班id /// </summary> public int flightid { get; set; } /// <summary> /// 航班名称 /// </summary> public string filghtname { get; set; } /// <summary> /// 航班号 /// </summary> public string number { get; set; } /// <summary> /// 出行日期 /// </summary> public datetime travellingdate { get; set; } }
/// <summary> /// 预订 /// </summary> public class reservation { /// <summary> /// 预订id /// </summary> public int bookingid { get; set; } /// <summary> /// 预订人 /// </summary> public string name { get; set; } /// <summary> /// 预订日期 /// </summary> public datetime bookingdate { get; set; } = datetime.now; }
public class tripreservation { public flightbooking filght { get; set; } public reservation hotel { get; set; } }
此类用于维护航班和预约的实体,在创建预约航班时使用。在entityframework 6.0+版本上出现了基于代码配置(code-based configuration),对于数据库初始化策略和其他等等配置,我们单独建立一个配置类来维护,而无需如我们以往一样放在dbcontext上下文派生类构造函数中,这样一来上下文派生类看起来则洁净很多。
public class hotelflightconfiguration : dbconfiguration { public hotelflightconfiguration() { setdatabaseinitializer(new dropcreatedatabaseifmodelchanges<hoteldbcontext>()); setdatabaseinitializer(new dropcreatedatabaseifmodelchanges<flightdbcontext>()); } }
接下来我们再来配置两个dbcontext上下文派生类即hoteldbcontext和flightdbcontext,并且基本配置信息利用特性来修饰,如下:
[dbconfigurationtype(typeof(hotelflightconfiguration))] public class flightdbcontext : dbcontext { public flightdbcontext() : base("name=flightconnection") { } public dbset<flightbooking> flightbookings { get; set; } protected override void onmodelcreating(dbmodelbuilder modelbuilder) { modelbuilder.configurations.add(new flightbookingmap()); base.onmodelcreating(modelbuilder); } }
[dbconfigurationtype(typeof(hotelflightconfiguration))] public class hoteldbcontext: dbcontext { public hoteldbcontext():base("name=reservationconnction") { } public dbset<reservation> reservations { get; set; } protected override void onmodelcreating(dbmodelbuilder modelbuilder) { modelbuilder.configurations.add(new reservationmap()); base.onmodelcreating(modelbuilder); } }
对应的映射配置已经叙述很多次了,我们不用废话,直接给出。
public class flightbookingmap : entitytypeconfiguration<flightbooking> { public flightbookingmap() { //table totable("flightbookings"); //key haskey(k => k.flightid); //property property(p => p.filghtname).hasmaxlength(50); property(p => p.number); property(p => p.travellingdate); } }
public class reservationmap : entitytypeconfiguration<reservation> { public reservationmap() { //table totable("reservations"); //key haskey(k => k.bookingid); //property property(p => p.bookingid).hasdatabasegeneratedoption(databasegeneratedoption.none); property(p => p.name).hasmaxlength(20); property(p => p.bookingdate); } }
如上两个上下文我们将迁移到不同数据库,所以连接字符串当然是两个啦。
<connectionstrings> <add name="reservationconnction" connectionstring="data source=wangpeng;initial catalog=reservationdb;integrated security=true" providername="system.data.sqlclient" /> <add name="flightconnection" connectionstring="data source=wangpeng;initial catalog=flightdb;integrated security=true" providername="system.data.sqlclient" /> </connectionstrings>
好了,模型和上下文一切都已构建完毕,接下来进入到迁移,请往下看。
多个上下文迁移
一个上下文进行迁移已经没有什么可说的了,在大多数场景下,貌似都是一个应用程序中仅仅存在一个上下文,因为幕后对应的只有一个数据库,这个大家是手到擒来,而对于多个上下文迁移对应不同数据库迁移又怎么去操作呢?如果你非常熟悉迁移命令,那么就当做是回顾吧,如若不然,可以此作为基本参考,有点啰嗦了哈,我们进入正文。将模型迁移至数据库并持久化只需要如下三步。
多个上下文迁移至不同文件夹目录
enable-migrations命令
add-migration命令
update-database命令
当统一应用程序只存在一个上下文时,我们只需要enabel-migrations即可,但是若存在多个上下文,若不明确指定上下文很显然会迁移报错,首先我们在nuget控制台将项目更换到上下文所在项目中。
接下来运行enable-migrations初始化迁移目录,很明显会出现迁移异常。
由于存在多个上下文,所以我们需要明确指定迁移哪个上下文。通过在其命令后继续添加-contexttypename指定上下文,并继续利用-migrtionsdirectory指定迁移目录,最后则是如下命令(不知道有哪些命令吗,在每个命令后添加一个【-】横杆并按下tab键则出现你想要的命令)。
enable-migrations -contexttypename flightdbcontext -migrationsdirectory:flightmigrations
接下来利用add-migration命令对已挂起模型改变搭建基架,也就是说将上次迁移后我们对模型发生了更改,以此为下一次迁移搭建基架,此时生成的模型状态为挂起状态或者称作为待定状态。我们需要迁移上述生成flightmigrations目录下的configuration类,所以此时在add-migration命令后指定-configurationtypename,然后通过-name指定第一次基架名称。
add-migration -configurationtypename entityframeworktransactionscope.data.flightmigrations.configuration -name initial
或者
add-migration -configurationtypename entityframeworktransactionscope.data.flightmigrations.configuration "initial"
最后则只需要通过update-database来持久化到数据库生成表了。
update-database -configurationtypename entityframeworktransactionscope.data.flightmigrations.configuration
同理我们对hoteldbcontext利用上述三步命令来进行迁移,最后我们能够很清晰的看到,每个上下文迁移在不同目录,如下:
上述迁移也没任何毛病,将每个上下文单独迁移生成文件夹,那么我们是否有想过将多个上下文迁移到同一目录文件夹下且区分开来呢,在我们只有一个上下文时默认给我们创建的文件夹为migrations,我们就在migrtions文件夹下生成不同上下文迁移配置。
多个上下文迁移至相同文件夹目录
这个其实也很简单,我们在-migrationdirectoty后面可以直接指定某个文件夹生成上下文,例如c:\a\dbcontext,entityframework也做到了这点,下面我们来看看。
enable-migrations -contexttypename flightdbcontext -migrationsdirectory migrations\flightdbcontext
enable-migrations -contexttypename hoteldbcontext -migrationsdirectory migrations\hoteldbcontext
其余两步运行方式和迁移不同一样,最终我们会看到想要的结果。
通过上述迁移最终将生成flightdb和reservationdb两个数据库并对应flightbookings和reservations表。好了到此关于多个上下文迁移两种方式就结束了,我们继续本节的话题。
分布式事务
有时候我们需要跨数据库管理事务,例如有这样一个场景,有两个数据库db1和db2,而tb1在db1中,tb2在db2中,同时tb1和tb2是关联的,在上述中我们创建的航班和预订模型,我们需要同时插入航班数据和预约数据到不同数据库中,此时则要求事务一致性,所以为了处理这样的要求,在.net 2.0,在system.transaction命名空间下为我们提供了transactionscope类。 此类提供了一种使代码块参与事务而不需要与事务本身交互的简单方式。强烈建议在using块中创建transactionscope对象。
当transactionscope被实例化时,事务管理器需要确定要参与哪个事务。一旦确定,该实例将一直参与到事务中。 在创建transactionscope对象时,我们需要传递具有以下值的transactionscopeoption枚举:
- required:实例必须需要事务,如果事务已存在,则使用已存在事务,否则将创建新事务。
- requiresnew:始终为实例创建一个新的事务。
- suppress:创建实例时,其他已存在事务将被抑制,因为该实例内的所有操作的完成而无需其他已存在事务。
接下来我们利用上述枚举中第二种方式来实现航班预约,简单逻辑如下:
public class makereservation { flightdbcontext flight; hoteldbcontext hotel; public makereservation() { flight = new flightdbcontext(); hotel = new hoteldbcontext(); } //处理事务方法 public bool reservtrip(tripreservation trip) { bool reserved = false; //绑定处理事务范围 using (var scope = new transactionscope(transactionscopeoption.requiresnew)) { try { //航班信息 flight.flightbookings.add(trip.filght); flight.savechanges(); //预约信息 hotel.reservations.add(trip.hotel); hotel.savechanges(); reserved = true; //完成事务并提交 scope.complete(); } catch (exception ex) { throw ex; } } return reserved; } }
上述reservtrip方法接受tripreservation对象。 该方法定义了transactionscope,并在事务的上下文中捆绑了用于flight和hotel的create操作,并将代码写入try-catch块中。 如果两个实体的savechanges方法成功执行,那么事务将被完成,否则回滚。接下来进行控制器调用。
public class tripcontroller : controller { makereservation reserv; public tripcontroller() { reserv = new makereservation(); } public actionresult index() { return view(); } public actionresult create() { return view(new tripreservation()); } [httppost] public actionresult create(tripreservation tripinfo) { try { tripinfo.filght.travellingdate = datetime.now; tripinfo.hotel.bookingdate = datetime.now; var res = reserv.reservtrip(tripinfo); if (!res) { return view("error"); } } catch (exception) { return view("error"); } return view("success"); } }
我们添加航班预约视图:
@model entityframeworktransactionscope.data.entity.tripreservation @{ viewbag.title = "create"; } <h2 class="text-center">旅游出行</h2> @using(html.beginform()){ <table class="table table-condensed table-striped table-bordered"> <tr> <td> <table class="table table-condensed table-striped table-bordered"> <tr> <td colspan="2" class="text-center"> 航班信息 </td> </tr> <tr> <td> 航班id: </td> <td> @html.editorfor(m => m.filght.flightid) </td> </tr> <tr> <td> 航班名称: </td> <td> @html.editorfor(m => m.filght.filghtname) </td> </tr> <tr> <td> 航班号: </td> <td> @html.editorfor(m => m.filght.number) </td> </tr> </table> </td> <td> <table class="table table-condensed table-striped table-bordered"> <tr> <td colspan="2" class="text-center"> 预约信息 </td> </tr> <tr> <td> 预约id: </td> <td> @html.editorfor(m => m.hotel.bookingid) </td> </tr> <tr> <td> 客户名称 </td> <td> @html.editorfor(m => m.hotel.name) </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="text-center"> <input type="submit" value="提交预约" /> </td> </tr> </table> }
视图展示ui如下:
要运行应用程序并检查事务,我们需要使用分布式事务处理协调器(dtc)服务。 该服务协调更新两个或多个事务受保护资源的事务,例如数据库,消息队列,文件系统等。首先我们需要确保dtc是否已经开启,在服务中进行查看并启用。
接下来打开dtc设置,请按照下列步骤操作或者直接运行【dcomcnfg.exe】一步到位打开组件服务。
- 打开控制面板
- 找到管理工具
- 找到组件服务
接下来我们填写相关信息来进行航班预约。
如上显示已经预约成功,我们看看两个数据库中的数据是否正确插入。
在dtc服务中,若每次提交未中止则提交数量将增加1,在我们对预约模型进行配置时,我们将主键未设置为标识列,所以在我们对主键重复的情况下再来看看表中数据。我们提交三次而预约主键不重复,在第四次时主键输入为第三次的主键,此时看看结果如下:
我们验证leflightbookings和reservations表中的数据,则新添加的记录将不会显示在其中。 这意味着transactionscope已经通过在单个范围中将连接与flight和hotel数据库捆绑在一起来管理transaction,并监控了committed和aborted transaction。
总结
正如我们在使用entityframework实体框架作为概念上的数据访问层时,在asp.net mvc应用程序中看到的那样,在执行多个数据库操作以存储与其相关的相关数据时,始终建议使用transactionscope来管理事务。
上一篇: phpstudy的php版本*修改的方法
下一篇: java简单手写版本实现时间轮算法