PLINQO 未正确命名实体
我已将 CSP 文件设置为使用 TableNaming 和 EntityNaming 作为单数:
<TableNaming>Singular</TableNaming>
<EntityNaming>Singular</EntityNaming>
但生成的实体是复数。
例如,我有一个名为“公司”的表。生成的名称是“Companies”,我期望“Company”(就像 LinqToSql 所做的那样——我正在升级一个项目。)
我有一个名为 EntityStorageItems 的表(与这些实体没有关系。)生成的名称是“EntityStorageItems”,我期望实体名称为“EntityStorageItem”
IOW,它正在创建复数名称。我需要它们是单一的(以便与现有代码一起使用)。
我做错了什么吗?
I have my CSP file set up to use TableNaming and EntityNaming as Singular:
<TableNaming>Singular</TableNaming>
<EntityNaming>Singular</EntityNaming>
Yet the generated entities are plural.
For instance, I have a table called Companies. The generated name is "Companies" I expected "Company" (like LinqToSql did -- I am upgrading a project.)
I have a table named EntityStorageItems (no relation to these entities.) The generated name is "EntityStorageItems" I expected the entity name to be "EntityStorageItem"
IOW, it is creating plural names. And I need them to be singular (to work with existing code.)
Am I doing something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该在 PLINQO 5.0。
谢谢
——布莱克·尼米斯基
This should be fixed in PLINQO 5.0.
Thanks
-Blake Niemyjski