CodeFirstMigrations??????????
???????????? ???????[ 2014/7/18 14:41:00 ] ??????????????? ?????
????????
????code first????????model???????????????????????????????????????????DropCreateDatabaseIfModelChanges?????????????????????????????????а????Щ????????????????????o????????????????????????????EF????????????????ɡ?
???????
????????NuGet
???????????
//?model
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
public class Lesson {
public int lessonID { get; set; }
[Required]
[MaxLength(50)]
public string lessonName { get; set; }
[Required]
public string teacherName { get; set; }
public virtual UserInfo UserInfo{get;set;}
}
//??model
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
public class Lesson {
public int lessonID { get; set; }
[Required]
[MaxLength(50)]
public string lessonName { get; set; }
[Required]
[MaxLength(10)]
public string teacherName { get; set; }
public virtual UserInfo UserInfo{get;set;}
}
|
?????????????????????teacherName???????????????????
??????????????????????????model????????У????????????????????????????????д???ε?????nvarchar(max)????????nvarchar(10)??
????1????config????????????????
????<connectionStrings>
????<add name="TestUsersDB" connectionString="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TestUsersDB;Data Source=XCL-PCSQLEXPRESS" providerName="System.Data.SqlClient" />
????</connectionStrings>
????2????NuGet???????
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11