linqpad + linq2sql 自定义模型
我正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了! 默认情况下,LINQPad 在 DataContext 中对表属性进行复数形式。 我应该使用 Linias 而不是 Linia。
Found it! By default, LINQPad pluralizes table properties in the DataContext. I should have used Linias instead of Linia.