2013年5月10日
摘要: 数据库create table stu(id int ,name varchar(100))create table score(id int ,scores int)1.首先还是先回顾下LINQ怎么查询制定字段很简单 代码如下 也可以自定义列名View Code 1 var d = from c in wq.stu2 select new3 {4 c.id5 };View Code 1 var d = from... 阅读全文
posted @ 2013-05-10 22:36 奋斗的笨小孩 阅读(377) 评论(1) 推荐(1)