Difference between && and where condition in entity framework query

前端 未结 3 1384
暗喜
暗喜 2020-12-10 17:05

Difference between and condition and two where condition in entity framework query

Code 1

I have using two where condition in my query

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-10 17:26

    From the documentation

    Return value:

    An IEnumerable that contains elements from the input sequence that satisfy the condition.

    So the second where will only be applied to the records surviging the first where - which is identical to the && expression you built in code 2.

    See: https://msdn.microsoft.com/de-de/library/bb534803%28v=vs.110%29.aspx

提交回复
热议问题