C# Linq 方法

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1086395/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 07:52:45  来源:igfitidea点击:

Linq Methods

c#linq

提问by Felipe Fujiy Pessoto

Linq in general, has extensions methods(at IEnumerable) like Where, Select, OrderBy. But use another methods like string.StartsWith.

通常,Linq 具有扩展方法(在 IEnumerable 处),例如 Where、Select、OrderBy。但是使用另一种方法,如 string.StartsWith。

Where can I find a list with all methods supported, for Linq to SQL and Linq to Entities?

我在哪里可以找到包含支持的所有方法的列表,用于 Linq to SQL 和 Linq to Entities?

采纳答案by Colin

Here's a list of all supported methods for LINQ to entities:

以下是 LINQ to entity 支持的所有方法的列表:

MSDN article

MSDN文章

回答by Philippe Leybaert

You can use Visual Studio's class browser to check the Enumerable class, which contains all LINQ extension methods.

您可以使用 Visual Studio 的类浏览器检查 Enumerable 类,该类包含所有 LINQ 扩展方法。

回答by CertifiedCrazy

You could start with 101 Linq Samples.

您可以从 101 个 Linq 样本开始。

There is a C# versionand a VB.Net Version. The C# and VB.Net are broken out differently and the VB.Net version has a section specific to Linq to SQL.

C# 版本VB.Net 版本。C# 和 VB.Net 的分解方式不同,VB.Net 版本有一个特定于 Linq to SQL 的部分。

You can also check out the MSDN section on Linq to SQL.

您还可以查看有关Linq to SQL的 MSDN 部分。

For Linq to Entities check out this MSDNlink on Supported and Unsupported Methods(LINQ to Entities).

对于 Linq to Entities,请查看有关支持和不支持的方法(LINQ to Entities) 的MSDN链接。

回答by Per Erik Stendahl