Viewing .NET Data - Visual Studio và Data Access – Phần 4
84
lượt xem 9
download
lượt xem 9
download
Download
Vui lòng tải xuống để xem tài liệu đầy đủ
Tạo Tables và Rows Ví dụ XSD dễ dàng hơn trong chương chỉ đoạn mã được viết ra khi visual studio editor được dùng để tạo một tập hợp lớp truy cập dữ liệu, và bạn sẽ được vui với đoạn mã cho các lớp này như sau: public class CustomerTable : DataTable { public CustomerTable() : base("Customers") { this.Columns.Add("CustomerID", typeof(string)); this.Columns.Add("CompanyName", typeof(string)); this.Columns.Add("ContactName", typeof(string)); } protected override System.Type GetRowType() { return typeof(CustomerRow); } protected builder) { return(DataRow) new CustomerRow(builder); } } ...
Chủ đề:
Bình luận(0) Đăng nhập để gửi bình luận!
CÓ THỂ BẠN MUỐN DOWNLOAD