码迷,mamicode.com
首页 >  
搜索关键字:linq distinct    ( 10194个结果
Linq模型ObjectContext下查看Sql语句。
ObjectContext 并没有提供 LINQ to SQL DataContext.Log 这样的功能,要查看实际生成的 T-SQL 语句,要么借助 SQL Server Sql Profiler 这样的工具,要么使用 ObjectQuery.ToTraceString() 方法。using (...
分类:数据库   时间:2014-05-26 11:24:15    阅读次数:270
SQLHelper -
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data.SqlClient; 6 using System.Dat...
分类:数据库   时间:2014-05-26 10:21:48    阅读次数:247
多线程简单示例
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 using System.Runtime.Remoti....
分类:编程语言   时间:2014-05-26 09:07:50    阅读次数:270
字符串转义字符
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleProgamming{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-26 08:00:40    阅读次数:184
线程间操作无效: 从不是创建控件的线程访问它.
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; ....
分类:编程语言   时间:2014-05-26 07:01:59    阅读次数:261
简单数据类型转换
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleProgamming{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-26 07:00:58    阅读次数:182
.net下BerkeleyDB操作封装C#版(附单元测试)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;using System.Text...
分类:数据库   时间:2014-05-26 06:18:47    阅读次数:443
NVelocity 类操作模板
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.IO;using NVelocity.App;using NVelocity...
分类:其他好文   时间:2014-05-24 13:17:32    阅读次数:198
整理常用函数
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;namespace WindowsAPI{class CSha...
分类:其他好文   时间:2014-05-24 12:59:58    阅读次数:366
Linq使用Distinct删除重复数据时如何指定所要依据的成员属性zz
最近项目中在用Linq Distinct想要将重复的资料去除时,发现它跟Any之类的方法有点不太一样,不能很直觉的在呼叫时直接带入重复数据判断的处理逻辑,所以当我们要用某个成员属性做重复数据的判断时,就必需绕一下路,这边稍微将处理的方法做个整理并记录一下。 首先为了方便接下去说明,我们必须先来准备后...
分类:其他好文   时间:2014-05-24 09:24:04    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!