使用 linq to sql 提供程序在 VB.Net 中编写 Lambda 查询表达式

发布于 2024-08-19 08:42:06 字数 179 浏览 2 评论 0原文

我只是不明白如何创建 lambda 表达式而不是使用常规理解 linq 查询。我看到的所有示例都不是使用 linq to sql 查询数据库。我希望能够构造一个 lambda 表达式,从 Northwind 数据库获取订单,其中国家/地区等于“我们”。我知道如何使用标准 linq 查询来构造它,但只是不使用 vb.net 中的 lambda。

I'm just not understanding on how to create a lambda expression instead of using a regular comprehension linq queries. All of the examples i see are not query a database using linq to sql. i want to able to construct a lambda expression that get my the orders from the northwind database where the country equals "us". I know how to construct this using the standard linq query, but just not using lambdas in vb.net.

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

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

发布评论

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

评论(1

人海汹涌 2024-08-26 08:42:06

不确定确切的北风结构,但可能是这样的:

Dim dc as new NorthwindDataConext()
Dim usOrders as List(of Order) = dc.Orders.Where(Function(o) o.Country = "US").ToList();

Not sure of the exact northwind structure but something like this probably:

Dim dc as new NorthwindDataConext()
Dim usOrders as List(of Order) = dc.Orders.Where(Function(o) o.Country = "US").ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文