这之间有什么不同吗:
dataContext.People.Select(ø => new { Name = ø.Name, });
还有这个:
dataContext.People.Select(ø => new { ø.Name, });
?
c# linq anonymous-types
anonymous-types ×1
c# ×1
linq ×1