摘要:
1.步骤序号 1.1 查询的一般形式 1.2. 根据各个子句被逻辑处理的顺序附以步骤序号 1.3. 查询流程图 查询流程图中,ORDER BY和TOP是处理顺序是反的。 ""……why TOP operators come earlier than ORDER BY in the query exe 阅读全文
摘要:
不知道大家有没有遇到这样的情况:List使用Lambda表达式的时候,想要选择项的某个属性列。例如,选择编号ID:1 var idList=list.Select(o=>o.ID).ToList();又,想要选择名称:1 var nameList=list.Select(o=>o.Name).ToL... 阅读全文