On page 220, the C # version 5.0 specification specification says:
It is important ... to ensure that the result of the query expression is never the original object, as this would reveal the type and source identifier for the request client.
Why would it be problematic to identify the type and identifier of the source for the request client?
As an example, a form request expression is from c in customers select cconverted to customers.Select(c => c)instead of simply customers.
In the above case, it seems to me that returning to the customerscustomer would be as good as returning the results customers.Select(c => c). Why is this not so?
source
share