Linq: What is the difference between Select and Where

后端 未结 7 900
臣服心动
臣服心动 2020-12-02 07:58

The Select and Where methods are available in Linq. What should every developer know about these two methods? For example: when to use one over th

7条回答
  •  佛祖请我去吃肉
    2020-12-02 08:38

    Select and Where are two completely different operators acting on IEnumerables.

    The first one is what we call a Projection Operator, while the last one is a Restriction Operator.

    One interesting way to have insight on the behavior of such operators is to take a look at their "functional type".

    • Select : (IEnumerable, Func) → IEnumerable; it takes as input both an IEnumerable containing elements of type T1 and a function transforming elements of type T1 into elements of type T2. The output is an IEnumerable containing elements of type T2.

      From this, one can easily guess that this operator will produce its output by applying the input function on each element of the input IEnumerable, and wrapping the results inside a new IEnumerable.

      Using some math-like notation, it takes as input (a, b, c, ...) : IEnumerable and f : T1 → T2 and produces (f(a), f(b), f(c), ...) : IEnumerable

    • Where : (IEnumerable, Func) → IEnumerable ; this one takes an IEnumerable containing elements of type T1 and a predicate on T1 (that is, a function that produces a boolean result for an input of type T1). You see that the output is also an IEnumerable containing elements of type T1.

      This time one would guess that an element of the input IEnumerable will be present on the output IEnumerable depending on the result of the application of the predicate to the element. Adding to this the semantics of the operator name, you can be sure that it will produce the output IEnumerable by taking from the input one only those elements that evaluates to true on the application of the predicate.

    People with functional programming background usually think like this. It allows you to deduce (or at least guess...) what an operator does only by looking at it's type!

    As an exercise, try to look at other operators introduced by LINQ on IEnumerables and deduce their behavior, before looking at the documentation!

提交回复
热议问题