public class Position
{
public string ConsumptionRateUnit { get; set; }
public List<Operation> Operations { get; set; }
}
public class Operation
{
public int? Id_position { get; set; }
public int? Id { get; set; }
public string FormValuation { get; set; }
}
var items = (from position in doc.Element("TechNorm").Elements("Position")
select new Position()
{
...
}
using (var db = new LoadNsiContext())
{
foreach (var operation in items)
{
db.Operations.Add(operation);
}
db.SaveChanges();
}
Возникла ошибка cannot convert element type to iterator type в foreach (var operation in items)
Как сохранить объект, который в себе содержит коллекцию других объектов с помощью Entity?