首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C# > 微软SQL服务器重构

微软SQL服务器重构

  • 资源大小:52.97 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: sql 服务器 微软 重构

资 源 简 介

C# library for versioning and refactoring database structure using Microsoft SQL Server Project home page: http://dbrefactor.csharpus.com Quick example: ``` // This migration creates "Role" table. // Down method exists to roll back a database structure to the previous version. [Migration(1)] public class CreateRoleTable: Migration { public override void Up() { CreateTable("Role") .Int("Id").PrimaryKeyWithIdentity() .String("Name", 30).Unique().NotNull() .Execute(); } public override void Down() { DropTable("Role"); } } ``` For more details use manual http://dbrefactor.csharpus.com/manual

文 件 列 表

DbRefactor-2.0-Preview
Data
dbrefactor.csharpus.com.url
DbRefactor.dll
DbRefactor.exe

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.179479s