쓸 수있는 데이터 테이블/데이터 집합을 채운 경우
var query = db.table.Where(x=>x.column1==condition1).ToList();
dataGridView1.DataSource = query(); dataGridView1.DataBind();
또는. 이 코드는 같은 보일 것이다 :
// Need to create a DataView from your original DataSet
// and set the view to the default view from your DataSet.
DataView view = new DataView();
view = myDataSet.Tables[0].DefaultView;
// Next, create a filter on that view
view.RowFilter = "State = 'CA'";
// Now create a DataTable from the view
// and set the DataSource of the DataGridView to that DataTable.
DataTable dt = view.ToTable("tablename");
dgrdToDisplay.DataSource = dt;
사용 A [DataView를을 (https://msdn.microsoft.com/en-us/library/system.data.dataview (V = vs.110)에서 .aspx) – LarsTech
2 개의 다른 선택 쿼리를 사용하여 2 개의 다른 TableAdapter를 사용하십시오. –