码迷,mamicode.com
首页 >  
搜索关键字:linq distinct    ( 10194个结果
Linq to EF 和 Linq to SQL 中间Linq 产生的SQL语句
一,Linq to EF using System;using System.Runtime.CompilerServices;using System.Linq;using System.Data; namespace EntityframeworkSQL{ class Program { sta...
分类:数据库   时间:2014-07-22 23:00:53    阅读次数:553
codeforces A. Slightly Decreasing Permutations 题解
Permutation p is an ordered set of integers p1,??p2,??...,??pn, consisting of n distinct positive integers, each of them doesn't exceed n. We'll denote the i-th element of permutation p as pi. ...
分类:其他好文   时间:2014-07-22 23:00:15    阅读次数:312
C#简单工厂模式(文件案例)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 读文件案例{ cla...
分类:其他好文   时间:2014-07-22 22:59:55    阅读次数:241
LINQ to Entities 不识别方法“Int32 Parse(System.String)”,因此该方法无法转换为存储表达式。解决
问题描述最近在用LINQ to Entities,看看下面的代码//获取分页数据 var admins = from aa in db.VAccountAdmins select aa; //处理过滤规则 if (null != filterRules) ...
分类:其他好文   时间:2014-05-12 16:40:23    阅读次数:306
T-SQL函数及用法--转
转自http://www.cnblogs.com/qixuejia/archive/2010/07/14/1777105.html1.聚合函数(1)AVG函数功能返回组中值的平均值。空值将被忽略语法AVG([ ALL | DISTINCT ] expression)(2)MAX函数功能返回表达式的最...
分类:数据库   时间:2014-05-05 23:23:05    阅读次数:560
LINQ获取树形分类的层数
数据库中的数据格式:字段数据类型idintdepartment_pidintdepartment_namenvarchar(20)CREATETABLE[dbo].[T_user_department]( [id] [int] IDENTITY(1,1)NOTNULL, [department_pi...
分类:其他好文   时间:2014-05-05 23:21:06    阅读次数:366
leetcode: Subsets & Subsets II
SubsetsGiven a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must...
分类:其他好文   时间:2014-05-02 16:39:15    阅读次数:315
简单版猜拳游戏
界面很简单//玩家类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 猜拳游戏{ /// //...
分类:其他好文   时间:2014-05-02 12:04:15    阅读次数:292
C#简单工厂模式(文件案例)
usingSystem; usingSystem.Collections.Generic; usingSystem.IO; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespace读文件案例 { classProgram { staticvoidMain(string[]args) { Console.WriteLine("请输入文件名"); stringfileName=Console.Read..
分类:其他好文   时间:2014-05-02 04:00:58    阅读次数:289
C#冒泡排序
C#冒泡排序,转载自:http://bbs.it-home.org/forum-net-2.html不多解析自己看去吧using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace...
分类:其他好文   时间:2014-05-01 20:17:35    阅读次数:348
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!