我正在使用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; }
}
}
我需要为db上下文获取表名“Pay_Employees_Mst”的注释。目前正在获取ModelName Employee。
请帮助。
答案 0 :(得分:0)
我明白了,
String entityName1 = (context as System.Data.Entity.Infrastructure.IObjectContextAdapter).ObjectContext
.CreateObjectSet<Employee>()
.EntitySet.Name;