所以给定数据上下文上的一些 sproc 说我做了一个..
from arr in someContext.MySproc() select arr.Hello, arr.Whoa where arr.Name = "grumbug"
如果是from arr in someContext.MyTable
那么 select 和 where 将导致实际的 sql 生成到 select 和 where,但在 sproc 的情况下,它也会导致查询数据库服务器上的 sproc 结果的 sql 生成,或者是过去的 sproc 结果到 C# 批发,其中 select 和 where 被视为标准 linq to collections select 和 where?