如何在不使用LINQ

时间:2015-07-12 15:30:02

标签: c# linq

我想知道如何在不重命名Linq中的其他列的情况下重命名列 或者在select语句中添加其他列。

 var sites = siteService.GetAllExpenses().Select(x => new { ExpenseId= x.Id, x.Expense});

我想获得一个费用列表,只重命名Id字段而不重命名其他字段,而不在Select语句中包含其他列 在LINQ中可以吗?

0 个答案:

没有答案