-
大小: 17.82M文件类型: .zip金币: 1下载: 0 次发布日期: 2020-12-26
- 语言: C#
- 标签: EF C# Migrations Migration
资源简介
该实例实现了:
- 添加列
- 定制化迁移
- 数据移动/定制sql
- 在应用程序启动时自动升级(MigrateDatabaseToLatestVersion初始化器)
只需要配置下app.config中的数据库连接串,即可自动生成数据库以及表结构,具体如下:
代码片段和文件信息
using System.Data.Entity;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity.Infrastructure;
namespace MigrationsDemo
{
public class BlogContext : DbContext
{
public DbSet Blogs { get; set; }
}
public class Blog
{
public int BlogId { get; set; }
public string Name { get; set; }
public string Url { get; set; }
public int Rating { get; set; }
public virtual List Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
[MaxLength(200)]
public string title { get; set; }
public string Content { get; set; }
public string Abstract { get; set; }
public int BlogId { get; set; }
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 483 2014-07-17 18:25 .gitattributes
文件 501 2014-07-17 18:25 .gitignore
文件 1189 2018-04-21 17:09 App.config
目录 0 2018-04-21 16:26 Migrations\
文件 825 2014-07-17 18:25 Migrations\201407170833142_InitialCreate.Designer.cs
文件 621 2014-07-17 18:25 Migrations\201407170833142_InitialCreate.cs
文件 7144 2014-07-17 18:25 Migrations\201407170833142_InitialCreate.resx
文件 816 2014-07-17 18:25 Migrations\201407170845118_AddBlogUrl.Designer.cs
文件 389 2014-07-17 18:25 Migrations\201407170845118_AddBlogUrl.cs
文件 7144 2014-07-17 18:25 Migrations\201407170845118_AddBlogUrl.resx
文件 822 2014-07-17 18:25 Migrations\201407170859167_AddPostClass.Designer.cs
文件 1148 2014-07-17 18:25 Migrations\201407170859167_AddPostClass.cs
文件 7776 2014-07-17 18:25 Migrations\201407170859167_AddPostClass.resx
文件 831 2014-07-17 18:25 Migrations\201407170906287_addpostAbstract.Designer.cs
文件 499 2014-07-17 18:25 Migrations\201407170906287_addpostAbstract.cs
文件 7804 2014-07-17 18:25 Migrations\201407170906287_addpostAbstract.resx
文件 1053 2014-07-17 18:25 Migrations\Configuration.cs
文件 7359 2018-04-21 16:30 MigrationsDemo.csproj
文件 498 2018-04-21 16:31 MigrationsDemo.csproj.user
文件 1123 2018-04-21 16:28 MigrationsDemo.sln
文件 843 2014-07-17 18:25 Model.cs
文件 771 2014-07-17 18:25 Program.cs
目录 0 2018-04-21 16:26 Properties\
文件 1404 2014-07-17 18:25 Properties\AssemblyInfo.cs
文件 159 2014-07-17 18:25 README.md
目录 0 2018-04-21 16:29 bin\
目录 0 2018-04-21 16:31 bin\Debug\
文件 622288 2017-10-23 13:15 bin\Debug\Entityfr
文件 158388 2017-10-23 13:15 bin\Debug\Entityfr
文件 295632 2017-10-23 13:15 bin\Debug\Entityfr
文件 67579 2017-10-23 13:15 bin\Debug\Entityfr
............此处省略127个文件信息
相关资源
- c#入门经典 第七版 中文版 非扫描版
- .netc#新手菜鸟mvc5的仓库管理系统 so
- C# NPOI生成word插入图片和表格
- C#程序设计基础C#程序设计及应用教程
- 深入.NET平台和C#编程
- .net 美萍超市管理系统源码C#
- WinForm GeckoFx33 Demo JS与C#互交 窗口浏览
- 《ASP.NET程序设计项目教程》周虎,王
- 计算机图形学 三维模型处理算法初步
- C# KTV 点歌系统,C#项目源码带数据库
- C#实验--A.1 视频动态绘制练习.
- c#实现动态规划法——求解矩阵连乘问
- c#winform中完美代替WebBrowser最新的控件
- C#高级编程第9版:C#5.0 & .NET 4.5.1 par
- Illustrated C# 2010 C# 4.0图解教程
- C# WINFORM框架源碼
- C# WinForm实践开发教程清晰版
- 3D打印机上位机源码Reprap Host 是C#写的
- C#设计模式+源码JamesW.Cooper.zip
- C#程序开发范例宝典(第3版).(配套
- C#写的年会抽奖软件包含源代码.zip
- 大型ERP C#源码
- asp.net完整项目带数据库
- 清大出版社 段德亮 《C#课程设计案例
- C#人事管理系统/人力资源管理系统
- C# 7 and .NET Core: Modern Cross-Platform Deve
- C# 5.0 in a Nutshell 5th Edition.pdf
-
C# 6.0 and the .NET 4.6 fr
amework(7th). - C# .NET webservices简单使用
- C# 6.0 in a Nutshell.pdf
评论
共有 条评论