从csv字段名称字符串中选择linq语句中的字段

时间:2016-11-17 16:52:19

标签: c# linq

我希望从linq查询中动态选择字段名称在csv字符串中的字段。

public IEnumerable<object> GetAllPeople(string fields)
{
   return (from p in people
           where p.alive == true
           select (the csv fields parameter (ie. fields = Name,Age,Height);
}

是的,我使用它作为一个穷人的OData,因为我不能在我所在的位置使用OData。

0 个答案:

没有答案