表达式?

发布于 2024-10-31 13:50:56 字数 47 浏览 1 评论 0原文

谁能解释一下表达式有什么用?

Can anyone explain what is the use of expressions<func>?

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

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

发布评论

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

评论(4

宛菡 2024-11-07 13:50:56

我假设您的意思是 Expression,其中 Func 是任何类型的通用 Func 委托。

如果是这种情况,Expression 所做的就是获取您在其位置传递的 lambda 表达式树。您会在 IQueryable 的变体或许多流畅的界面中最常见地发现这种情况。

表达式树通常在运行时使用,将 lambda 表达式转换为其他格式。例如 LINQ to SQL 中的 SQL。

您可以阅读有关 表达式
以及有关.NET 中的表达式树的更多信息

I'm going to assume you mean Expression<Func> where Func is any variety of the generic Func delegate.

If this is to be the case, what Expression<Func> is doing is getting an expression tree of the lambda that you're passing in its place. You'll find this most commonly on the variants of IQueryable<T> or in many fluent interfaces.

The expression trees are used at run-time to generally translate the lambda expression into some other format. Such as SQL in the case of LINQ to SQL.

You can read up more on Expression
And more about expression trees in .NET

星軌x 2024-11-07 13:50:56

表达式树表示树状数据结构中的代码,其中每个节点都是一个表达式,例如方法调用或二元运算(例如 x <<)。 y

您可以本文阅读更多内容。

Expression trees represent code in a tree-like data structure, where each node is an expression, for example, a method call or a binary operation such as x < y

You can read more in this article.

迷离° 2024-11-07 13:50:56

来自 MSDN:

将强类型 lambda 表达式表示为表达式树形式的数据结构

下面是它的使用的真实示例,说明了它的用途:http://www.albahari.com/nutshell/predicatebuilder.aspx

From MSDN:

Represents a strongly typed lambda expression as a data structure in the form of an expression tree

Here's a real world example of it's use that shows why it's useful: http://www.albahari.com/nutshell/predicatebuilder.aspx

烦人精 2024-11-07 13:50:56

您可能需要从此处开始

lambda 表达式是匿名的
可以包含表达式的函数
和语句,并且可用于
创建委托或表达式树
类型。

You may want to start here

A lambda expression is an anonymous
function that can contain expressions
and statements, and can be used to
create delegates or expression tree
types.

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