0

我正在使用 MVC4、T4 脚手架和 EF5。我创建了一个模型,

namespace wbtest.Models
{
[Table(name: "Pay_Employees_Mst", Schema = "Test")]
public class Employee
 {
public int EMPLOYEE_ID { get; set; }
public string EMPLOYEE_CODE { get; set; }
}
}

我需要为数据库上下文获取表名“Pay_Employees_Mst”的注释。目前正在获取 ModelName Employee。

请帮忙。

4

1 回答 1

0

我通过了,

String entityName1 = (context as System.Data.Entity.Infrastructure.IObjectContextAdapter).ObjectContext
  .CreateObjectSet<Employee>()
  .EntitySet.Name;
于 2013-05-08T06:19:09.093 回答