实体框架4表名前缀
我想知道,在数据库优先方法中,是否可以自动从表名中删除前缀。
例如表名称是:
Core_Customers
我希望它只是Customers
。
或者这只能通过编辑 edmx 模型中的所有类名来实现?
I would like to know, in a database first approach, if it is possible to automatically strip prefixes from table names.
For example table name is:
Core_Customers
I would like that to be just Customers
.
Or is this only possible by editing all the class names in the edmx model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为每次生成模型时都会生成设计器,因此即使您对其进行更改也可能不是永久性的。这可能只能通过编辑 edmx 模型中的所有类名称来实现。这是类似帖子!
I think the designer is generated every time you generate your model so even if you change it in it might not be permanent.It's probably only possible by editing all the class names in the edmx model. Here is similar post though!