摘要: 1.建一个类ArticleView Code 1 using System.Data.Linq.Mapping; 2 3 4 5 [Table(Name = "Article")] 6 public class Article 7 { 8 [Column(IsPrimaryKey=true)] 9 public int id10 {11 get;12 set;13 }14 [Column(Name = "containt")]15 ... 阅读全文
posted @ 2011-11-09 15:03 li-peng 阅读(945) 评论(0) 推荐(1) 编辑