var description
Posted
by mazhar
on Stack Overflow
See other posts from Stack Overflow
or by mazhar
Published on 2010-05-02T17:30:56Z
Indexed on
2010/05/02
17:37 UTC
Read the original article
Hit count: 152
LINQ
what really does var does in this case
var productInfos = from p in products select new { p.ProductName, p.Category, Price = p.UnitPrice };
© Stack Overflow or respective owner