我正在使用 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。
请帮忙。