Convert Linq operation syntax to query syntax
I'm trying to figure out how to convert this method syntax into query syntax:
result.Select(c => { c.property1 = 100; return c; }).ToList();
I'm trying to figure out how to convert this method syntax into query syntax:
result.Select(c => { c.property1 = 100; return c; }).ToList();
Comments
Post a Comment