Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Các điều khoản trong một truy vấn, và cuối cùng LINQ các phương pháp khuyến nông và các biểu thức lambda tạo nên một biểu thức LINQ cây chuyển thành các câu lệnh SQL và những điều khoản chỉ được phát hiện trên máy chủ dữ liệu | 26 Microsoft ADO.NET 4 Step by Step 3. Open the source code view for the TableDetails form. Locate the TableDetails_Load routine. Just below the comment Add the columns to the display list add the following statements to access individual columns of the DataTable foreach DataColumn oneColumn in ActiveTable.Columns this.AllColumns.Items.Add oneColumn if this.AllColumns.Items.Count 0 this.AllColumns.Items.Add No columns available 4. Locate the AllColumns_DrawItem event handler. Just below the comment Extract the column details add the following statements to access members of the DataColumn columnName itemDetail.ColumnName dataTypeName itemDetail.DataType.ToString isPrimaryKey ActiveTable.PrimaryKey null ActiveTable.PrimaryKey.Contains itemDetail true 5. Run the application. When the switchboard appears click the Show Table with Columns button. The TableDetails form opens with a structural view of the table and its column details. Adding Columns to a DataTable Visual Basic Note This exercise uses the Chapter 2 VB sample project and continues the previous exercise in this chapter. 1. Open the source code view for the Switchboard form. Locate the GetColumnTable function. This routine already contains a single statement. Return Nothing 2. Replace that line with the following statements to create a new DataTable with columns and a primary key ---- Return a table that has columns. Dim theTable As New DataTable Customer Chapter 2 Building Tables of Data 27 ---- Add some basic columns. theTable.Columns.Add ID GetType Long theTable.Columns.Add FullName GetType String theTable.Columns.Add LastOrderDate GetType Date ---- Create a primary key for the table. theTable.PrimaryKey theTable.Columns ID ---- Finished. Return theTable 3. Open the source code view for the TableDetails form. Locate the TableDetails_Load routine. Just below the comment that says Add the columns to the display list add the following statements to access individual columns of the DataTable For Each .