有没有办法在 EDM Designer 2010 中设置自定义复数形式?

发布于 2024-08-29 18:58:57 字数 96 浏览 7 评论 0原文

我正在使用 VS 2010,并且我有一个实体“Person”。

复数服务将其复数变为“People”,我希望它是“Persons”。 有没有可以管理复数库的地方?

I am using VS 2010 and I have an entity 'Person'.

The pluralization-service turns its plural to 'People', I want it to be Persons.
Is there a place where I can manage the pluralizations library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蘸点软妹酱 2024-09-05 18:58:57

不在 Visual Studio 中,不。

与此同时,您可以下降到 API 级别并创建您自己的从抽象 PluralizationService 类派生的实现。完成此操作后,您可以告诉 EntityModelSchemaGenerator 使用您的实现(而不是默认实现)来使用特定的复数规则生成模型。这是一个仅限 API 的解决方案,我们尚未提供在 Visual Studio 中选择不同复数词的方法。

但是,您可以在自己的代码中使用复数服务,并在那里进行自定义。

这是一个示例

Not in Visual Studio, no.

In the meantime though you can drop down to the API level and create your own implementation derived from the abstract PluralizationService class. Once you’ve done this you can tell the EntityModelSchemaGenerator to use your implementation, rather than the default, to produce a model using your particular pluralization rules. This is an API only solution, we don’t yet provide a way to choose a different pluralizer in Visual Studio.

You can use the pluralization service in your own code, however, and customize it there.

Here's an example.

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