, , , . DataSet AdventureWorks Product. DataGridView TextBox . DataSet . BindingSource . DataSource BindingSource DataSet . DataMember Product, ProductTableAdapter . DataSource DataGridView BindingSource. Text TextBox Name BindingSource, Name Product. OnLoad Fill , TableAdapter Product DataTable. :
this.bindingSource.DataSource = this.adventureWorks.Product.Where(p => !p.IsProductSubcategoryIDNull()).ToList();
, , , TextBox .
ToList , BindingSource - , , ,
The method or operation is not implemented.
at System.Linq.Enumerable.Iterator`1.System.Collections.IEnumerator.Reset()
...
, , Is * Null().
, , , DataSet , . , , DateTime.
ALOT , DataView , DataTable , , , .
, , datarow datatable, DataTable , .
DataRow[] rows = this.adventureWorks.Product.Where(p => !p.IsProductSubcategoryIDNull()).ToArray();
if (rows.Length > 0)
{
this.bindingSource.DataSource = rows.CopyToDataTable();
}
else
{
this.bindingSource.DataSource = rows;
}
, DataTable DataSource, , DataTable, DataRow [], DataTable TableAdapter. , , , .