摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.Linq.Mapping;using System.Data.Linq;namespace LQ{ [Table(Name = "Customers")] //这里是将数据库中的Customers表映射到Customer类上 public class Customer { [Column] //顾名思义 列 public string CustomerID { get; set; } [Colum 阅读全文
posted @ 2010-12-29 15:09
吃螺丝
阅读(438)
评论(3)
推荐(1)