表屬性
[Table("People")]
public class Person
{
public int PersonID { get; set; }
public string PersonName { get; set; }
}
告訴實體框架使用特定的表名而不是生成一個(即 Person
或 Persons
)
我們還可以使用[Table]屬性為表指定模式
[Table("People", Schema = "domain")]
[Table("People")]
public class Person
{
public int PersonID { get; set; }
public string PersonName { get; set; }
}
告訴實體框架使用特定的表名而不是生成一個(即 Person
或 Persons
)
我們還可以使用[Table]屬性為表指定模式
[Table("People", Schema = "domain")]