仅对单个类禁用 Linq to SQL 类中的自动复数化
我有一个带有不规则复数的表名(复数与单数相同)。有没有办法禁用该单个表的自动复数(Account = DB.Accounts),同时保留其他表的功能?
I have a single table name with an irregular plural (the plural is the same as the singular). Is there any way to disable the automatic pluralization (Account = DB.Accounts) for that single table while retaining the feature for the others?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要禁用 LINQ to SQL 设计器的复数表名称。
为此,请导航至工具 ->选项->数据库工具-> O/R Designer 并将名称的复数形式更改为 false。
然后您需要重新编译您的项目,它应该解决命名问题
Linq to SQL:如何阻止自动生成的对象名称被重命名?
You need to disable the Pluralize Table Names for the LINQ to SQL designer.
To do this navigate to Tools -> Options -> Database Tools -> O/R Designer and change the Pluralization of names to false.
Then you will need to recompile your project and it should address the naming
Linq to SQL: How do I stop the auto generated object name from being renamed?
如果您真的只担心单个类,我会让框架将名称复数,然后只需手动删除您担心的一个类的复数。
If you're really only worried about a single class, I would let the Framework pluralize the name and then simply manually remove the pluralization for the one class you're worried about.
我认为你不能使用纯 Linq2SQL 来做到这一点。
在用于生成 Linq 2 SQL 实体的 Entity Framework + T4 模板上,您可以自定义 T4 模板来控制复数,实现您自己的规则例外。
I think you can´t do this using pure Linq2SQL.
On Entity Frameowrk + T4 template for generate Linq 2 SQL entities you can customize a T4 template for take control of pluralization, implementing your own rules exceptions.