However given the below code snippet, im unsure what the Return statement is returning
public List
string sql = @"SELECT CustomerId, CompanyName, City, Country, Version
FROM [Customer] ".OrderBy(sortExpression);
return Db.ReadList(sql, Make);
The Return statement is going to another class entirely, I assume this still falls under an Expression rather than a value but to an external class and method?
Thanks
VulpesPosted Mar 7, 2012, 5:25 AM
1. A value.
2. A computation which produces a value.
3. A method call or property which returns a value.
4. A combination of the above which produces a value.
So, basically, it's anything that produces a value.