- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个关于 LINQ 中的棘手问题的问题(对我来说几乎是棘手的!)。
可以写出下面的linqQuery
string[] digits = { "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine" };
var linqQuery= digits.Where((digit, index) => digit.Length < index);
利用Enumerable.Where<TSource>(IEnumerable<TSource>, Func<TSource, Int32, Boolean>)
可枚举重载方法,使用查询语法
var linqQuery = from ...
where ...
select ...;
?
方法Enumerable.Where<TSource>(IEnumerable<TSource>, Func<TSource, Int32, Boolean>)
使用 Int32
参数作为源元素的索引,我想知道是否可以从查询语法而不是其他 Enumberable 重载方法中推断出此方法 Enumerable.Where<TSource> Method (IEnumerable<TSource>, Func<TSource, Boolean>)
.
这里是 MSDN 引用
最佳答案
不,这不可能。查询语法仅支持可用操作的一个子集。查询语法中的任何内容都不会编译成 Where
的重载。
您拥有的一切都很好。不过,这里有一些查询语法的想法,可以让您编写这样的操作:
var linqQuery = from d in digits.Where((digit, index) => digit.Length < index)
// You can do more stuff here if you like
select d;
还可以考虑首先投影到包含索引的类型(不幸的是,帮助您执行此操作的 Select
重载具有相同的问题),然后在查询中执行过滤器和其他下游操作-语法:
var linqQuery = from tuple in digits.Select((digit, index) =>
new { Digit = digit, Index = index })
where tuple.Digit.Length < tuple.Index
// You can do more stuff here if you like
select tuple.Digit;
同时考虑 moreLinq的 SmartEnumerable
,它使您免于投影到元组的麻烦:
var linqQuery = from tuple in digits.AsSmartEnumerable()
where tuple.Value.Length < tuple.Index
// You can do more stuff here if you like
select tuple.Value;
关于c# - LINQ 和 Enumerable.Where<TSource>(IEnumerable<TSource>, Func<TSource, Int32, Boolean>) 重载方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13902978/
我想通过例子来理解TSource,Tkey的概念。 我们有代码 class Pet { public string Name { get; se
我有一个关于 LINQ 中的棘手问题的问题(对我来说几乎是棘手的!)。 可以写出下面的linqQuery string[] digits = { "zero", "one", "two", "thre
假设有两个列表 A 和 B,因此 A = (1,2,3) 和 B = (4,5,6)。 A.Concat(B) 会保留顺序以便结果为 (1,2,3,4,5,6) 吗? 最佳答案 是的。 IEnumer
有什么区别 public static IEnumerable Where (this IEnumerable source, Func predicate) 和 public sta
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 8 年前。 Improve t
我有字典,比如 Dictionary accValues = new Dictionary() 我想获取特定键的 bool 值。我可以通过 foreach 来完成,比如 foreach (KeyVal
我有一个包含很多 DbSet 的 DbContext。每个 DbSet 都应该有一个函数来从集合中获取一页项目,具有给定的 pageSize 并按特定的 sortOrder 排序。像这样的东西: va
在 Linq 中,当我调用 SingleOrDefault 或 FirstOrDefault 时,如何为特定对象返回 null 以外的内容,例如。 List cc = CrazyCon
在我们的应用程序中,我们使用 ReactiveUI 来遵循 MVVM 模式。在一个 View 中,我们想要显示一个 UITableView。数据通常传递给 UITableView.Source 但对于
在MSDN help page on Enumerable.FirstOrDefault Method有一个方法结果解释为: default(TSource) if source is empty;
我有下面的代码示例,我想在其中 prepend源参数前面的一些文本,可以是 ISite 或 IFactory 类型,通过 MoreLinq extension 在 MVC 下拉列表中使用.此函数用于返
很多语句(在 Linq 中经常看到)在不需要编译或执行时使用 TSource。为什么要指定 TSource? 例子: List list = new List(5) { 0, 1, 2, 0, 3
IEnumerable公开一个枚举器,因此可以枚举对象。此接口(interface)公开的索引没有任何内容。 IList关于索引,因为它公开了 IndexOf方法。 那么 Enumerable.Ele
我正在开发一个基于 Asp.net MVC 3.0 的大型系统,并在 Mono-2.10.8 (Windows 7) 上工作。 几天前一切都很好。 在我的 API 中,我有几个使用字典的实用程序类。例
我正在尝试创建一个表示以下内容的表达式树: myObject.childObjectCollection.Any(i => i.Name == "name"); 为清楚起见,我有以下内容: //'my
我想确认 https://stackoverflow.com/a/10387423/368896 的答案是正确的,适用于以下情况: // These IDataHolder instances con
我正在尝试通过 List> 进行枚举,但未成功过滤 List 的集合.当 display() 时,我的代码编译,但只返回整个列表,未经过滤。被调用。 我的问题是,保存可用于过滤另一个集合的 lambd
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 2 年前。 Improve t
我有以下 linq 语句: List allTypes = group.GetTypes().Union(group2.GetTypes()).ToList(); 当 group2 为 null 时可
问题 什么是TSource? 这是一个 example from MSDN : public static IEnumerable Union( this IEnumerable first,
我是一名优秀的程序员,十分优秀!