仅对单个类禁用 Linq to SQL 类中的自动复数化

发布于 2024-12-02 12:09:52 字数 82 浏览 0 评论 0原文

我有一个带有不规则复数的表名(复数与单数相同)。有没有办法禁用该单个表的自动复数(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

┾廆蒐ゝ 2024-12-09 12:09:52

您需要禁用 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?

送舟行 2024-12-09 12:09:52

如果您真的只担心单个类,我会让框架将名称复数,然后只需手动删除您担心的一个类的复数。

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.

陌上青苔 2024-12-09 12:09:52

我认为你不能使用纯 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文