我的问题是我的数据库中有一个现有的数据表“T_store”,其中包含 3 个字段:storeKey、StoreName、StoreDescription。我现在想创建一个 MVC 3 应用程序。映射到所有这个领域,我有
public int Id {get; }{set;}
public int storeKey {get; }{set;}
public int StoreName {get; }{set;}
public int StoreDescription {get; }{set;}
但是如果我声明 int id 会出现错误,因为现有的数据表没有这个字段?
请有任何想法