我正在尝试从我的映射器返回一个对象列表并将它们保存到我的实体框架数据库中。我的映射器类看起来像这样
class TimereportMappers
{
public List<Days> dayMap(List<Day> days)
{
List<Days> output = new List<Days>();
foreach (Common.Day input in days)
{
output.Add(new Days()
{
Date = input.Date,
Hour = input.Hours
});
//output.Date = input.Date;
//output.Hour = input.Hours;
}
return output;
}
}
我的数据访问类中的问题是我不知道如何将对象保存到我的数据库中,数据访问类中的方法如下所示
public void sendDays(List<Common.Day> days)
{
TimereportMappers mapper = new TimereportMappers();
context.Days.AddObject(mapper.dayMap(days));
context.SaveChanges();
}
但是 AddObject 只能添加 1 个对象?如何添加对象列表?
Visual Studio 给了我错误代码
错误 2 参数 1:无法从 'System.Collections.Generic.List' 转换为 'Timereport.BusinessLogic.Data_Access.Days' C:\Users\widde\Documents\Visual Studio 2010\Projects\Timereport\Timereport.BusinessLogic\TimereportDataAccess。 cs 43 37 Timereport.BusinessLogic
和
错误 1 'System.Data.Objects.ObjectSet.AddObject(Timereport.BusinessLogic.Data_Access.Days)' 的最佳重载方法匹配有一些无效参数 C:\Users\widde\Documents\Visual Studio 2010\Projects\Timereport\Timereport .BusinessLogic\TimereportDataAccess.cs 43 14 Timereport.BusinessLogic