摘要: using System.Data.Linq;using System.Data.Linq.Mapping;After that you need to define the model by hand.//Model Class[Table]public class EmailClass{ [Column(IsDbGenerated = true, IsPrimaryKey = true)] public int Id { get; set; } [Column()] public string EmailAddress { get; set; }}Once the ... 阅读全文
posted @ 2012-03-25 21:39 笨笨鱼~ 阅读(196) 评论(0) 推荐(0) 编辑