2011年5月15日
摘要: select 描述:查询顾客的公司名、地址信息查询句法:var 构建匿名类型1 = from c in ctx.Customers select new { 公司名 = c.CompanyName, 地址 = c.A... 阅读全文
posted @ 2011-05-15 16:29 WPF之家 阅读(188) 评论(0) 推荐(0)
摘要: 数据实体类:[Table(Name = "customers")] public class Customer { private string _CustomerID; [Column(IsPrimaryKey=true,Storage="_CustomerID")] public string CustomerID { ... 阅读全文
posted @ 2011-05-15 16:20 WPF之家 阅读(279) 评论(0) 推荐(0)