摘要: Linq查询语句编写工具可以用LinqPad,挺好用的一下是我自己学习Linq to SQL的查询语句//基本查询/*from c in WorkFlowsselect c*///带条件查询/*from c in WorkFlows where c.Pid==1select c*///查询显示不同的列/*from c in WorkFlows select new{ c.ID, c.WorkFlowName}*///排序/*from c in WorkFlowsorderby c.ID descendingselect c*///去除某个字段的重复/*(from c in WorkFlowsw 阅读全文
posted @ 2011-11-10 15:47 ajunfly 阅读(9888) 评论(0) 推荐(1) 编辑