我有一个Job_Details类对象列表。我正在尝试将对象添加到列表中。对象是由Entity Framework类创建的Job_Details类的类型。
private IEnumerable<DataControllers.Job_Details> dgvJdetailsSource = new List<DataControllers.Job_Details>();
我正在声明这样的新对象。
DataControllers.Job_Details JDetails = new DataControllers.Job_Details();
并且我正在尝试像这样向列表中添加一个新对象。
dgvJdetailsSource.Add(JDetails);
但这给我一个错误提示
错误9'System.Collections.Generic.IEnumerable'不包含'Add'的定义,并且找不到扩展方法'Add'接受类型为'System.Collections.Generic.IEnumerable'的第一个参数。您是否缺少using指令或程序集引用?)C:\ Users \ Administrator \ Documents \ Visual Studio 2013 \ Projects \ RITJobAllocation \ RITJobAllocation \ FormControllers \ frmJobAllocation.cs 539 31 RITJobAllocation
如何克服这个问题并成功将对象添加到列表中?