动态表名 linq-to-sql 动态 LINQ
我想根据用户选择的内容动态构建查询,并且我想在 LINQ-t0-SQL 中执行此操作。我已经看到这个,但我不想使用SQL带有数据上下文的语句。
在谷歌上搜索了一下,我感觉这可以使用动态 LINQ 来完成。有人会提供一个使用动态 LINQ 的类似场景的示例吗?
I want to construct my query dynamically based on the contents user has selected, and I want to do this in LINQ-t0-SQL. I have seen this, but I don't want to use SQL statements with datacontext.
On Googling a bit I have a feeling that this can be done using dynamic LINQ. Would someone provide an example of similar scenario with dynamic LINQ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来像这个 是您需要的链接。
更新。一些细节:您可以使用帖子中的 SearchType 方法使用表名称获取类型,然后使用 动态 LINQ 来编写您喜欢的查询。
Looks like this is the link you need.
Update. Some details: you can use the SearchType method from the post to obtain a type using the table name and then use Dynamic LINQ to write queries you like.