linqpad + linq2sql 自定义模型

发布于 2024-07-26 18:48:04 字数 340 浏览 11 评论 0原文

我正在尝试让 LinqPad 使用我的 dbml 模型,以便我可以从源代码中分析查询。 我已将 DataContext 设置为“自定义 LINQ to SQL DataContext”,以及所有必要的设置,不幸的是,即使使用最简单的查询,我也会收到错误:

QUERY: from m in Linia select m
ERROR: Could not find an implementation of the query pattern for source type 'MyNameSpace.Linia'.  'Select' not found.

有人知道如何让它工作吗? 谢谢!

I'm trying to get LinqPad use my dbml model so I could analyze a query from my source code. I've set the DataContext to "Custom LINQ to SQL DataContext", and all the necessary settings, unfortunately even with the simplest query I get an error :

QUERY: from m in Linia select m
ERROR: Could not find an implementation of the query pattern for source type 'MyNameSpace.Linia'.  'Select' not found.

Does anybody know how to get this to work? Thx!

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

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

发布评论

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

评论(1

花之痕靓丽 2024-08-02 18:48:05

找到了! 默认情况下,LINQPad 在 DataContext 中对表属性进行复数形式。 我应该使用 Linias 而不是 Linia。

Found it! By default, LINQPad pluralizes table properties in the DataContext. I should have used Linias instead of Linia.

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