我使用下面的代碼,以避免重複:Lambda表達式:如何映射到List而不是IEnumerable?
private static Expression<Func<Incident_Log, IncidentVM>> mappingIncidentVM()
{
return x => new IncidentVM
{
incident_ID = x.incident_id,
incident_description = x.incident_description,
file_names = x.file_names,
location = x.location,
Actions =
x.Action_Log.Where(y => y.assigned_to == y.assigned_to).Select(z => new ActionVM
{
incident_ID = z.incident_id,
action_ID = z.action_id,
action_description = z.action_description
})
//actionList = new List<ActionVM>(d => mappingActionVM)
};
}
然後,我可以做到以下幾點:
List<IncidentVM> incidents = db.Incident_Log.Select(mappingIncidentVM).ToList();
,並將其映射的Incident_Log實體到我的視圖模型IncidentVM。 我的問題是,我希望我能直接映射到一個列表,而不是一個IEnumerable.Something這樣的:
private static Expression<Func<Incident_Log, IncidentVM>> mappingIncidentVM()
{
return x => new IncidentVM
{
incident_ID = x.incident_id,
incident_description = x.incident_description,
file_names = x.file_names,
location = x.location,
actionList =
x.Action_Log.Where(y => y.assigned_to == y.assigned_to).Select(z => new ActionVM
{
incident_ID = z.incident_id,
action_ID = z.action_id,
action_description = z.action_description
}).ToList()
};
}
但是,這是拋出一個錯誤:
LINQ to Entities does not recognize the method System.Collections.Generic.List[ViewModel.ActionVM] ToList[ActionVM](System.Collections.Generic.IEnumerable([ViewModel.ActionVM]) method, and this method cannot be translated into a store expression.
的ToList()不被認可。
這裏是我的ViewModel:
public class IncidentVM
{
public int incident_ID { set; get; }
[Display(Name = "Description*")]
[Required]
public string incident_description { get; set; }
[Display(Name = "Specific Location*")]
[Required]
public string location { set; get; }
public string file_names { set; get; }
//Here is the problem, I 'd like to have only actionList
public IEnumerable<ActionVM> Actions { get; set; }
public List<ActionVM> actionList { get; set; }
這裏是爲Action_Log對象模型:
public partial class Action_Log
{
public int action_id { get; set; }
public int incident_id { get; set; }
public string action_description { get; set; }
public virtual Incident_Log Incident_Log { get; set; }
}
是否有可能直接映射到在這種情況下,一個列表?
'y.assigned_to == y.assigned_to'? –
Action_Log是否在部分類的其他部分中實現IQueryable?你如何在其上執行查詢?你可以編輯OP來顯示部分類的其他部分嗎? –
@GertArnold我從模型中拿走了一些屬性來縮短代碼... assigned_to是其中的一個(只是一個字符串) – Sychal