ASP.Net 动态数据在使用实体时显示每个表的主键
动态数据实体项目 (EntityFramework) 使用非常普通的数据库,并使用 Identity int 作为主键,显示主键以供查看和编辑。使用 Linq to Sql 时,不显示主键字段。
我想隐藏主键并使用实体框架(VS 2008,.Net 3.5 sp1)。 谢谢
Using a very run-of-the-mill database, with identity int for primary keys, a Dynamic Data Entities Project (EntityFramework) displays the primary key for view and edit. When using Linq to Sql, the primary key fields are not displayed.
I would like to hide the primary keys and use Entity Framework (VS 2008, .Net 3.5 sp1).
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ScaffoldColumnAttribute
不为列搭建支架。您需要自定义代码生成(在 EF 4 中更容易)或为此使用伙伴类。
Use
ScaffoldColumnAttribute
to not scaffold a column.You'll need to either customize code generation (easier in EF 4) or use a buddy class for this.