using System;using 
System.Collections.Generic;using System.ComponentModel;using System.Data;using 
System.Drawing;using System.Linq;using System.Text;u...
                            
                            
                                分类:
数据库   时间:
2014-06-10 13:25:34   
                                阅读次数:
269
                             
                    
                        
                            
                            
                                using IExtendServices;using System;using 
System.Collections.Generic;using System.IO;using System.Linq;using 
System.Reflection;using System.Text;using ...
                            
                            
                                分类:
其他好文   时间:
2014-06-10 09:25:33   
                                阅读次数:
191
                             
                    
                        
                            
                            
                                1、 查询Student表中的所有记录的Sname、Ssex和Class列。select 
sname,ssex,class from studentLinq: from s in Students select new { s.SNAME, 
s.SSEX, s.CLASS }Lambda: Stud...
                            
                            
                                分类:
数据库   时间:
2014-06-09 22:04:17   
                                阅读次数:
456
                             
                    
                        
                            
                            
                                Linq的出现,使数据集的处理显得愈来愈简便。很多时候对于本地数据集的处理,脑海中的第一反应,即尝试使用Linq来实现。诸如DataTable的innerJoin以及leftJoin等操作,很多时候我们一接到类似的需求,立马便动手,诸如以下demo:一、InnerJoin 
1 ...
                            
                            
                                分类:
其他好文   时间:
2014-06-09 21:30:04   
                                阅读次数:
347
                             
                    
                        
                            
                            
                                1 using System; 2 using 
System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using 
System.Threading.Tasks; 6 7 namespace Static再谈.....
                            
                            
                                分类:
其他好文   时间:
2014-06-09 19:24:42   
                                阅读次数:
162
                             
                    
                        
                            
                            
                                先写一个数据类Grade.csusing System;using 
System.Collections.Generic;using System.Linq;using System.Text;using 
System.Threading.Tasks;using System.Collections...
                            
                            
                                分类:
其他好文   时间:
2014-06-09 18:45:56   
                                阅读次数:
176
                             
                    
                        
                            
                            
                                using System;using System.Collections.Generic;using 
System.Linq;using System.Web;using System.Web.Mvc;namespace 
PagedList.MVCWeb.Controllers{ publi...
                            
                            
                                分类:
Web程序   时间:
2014-06-09 18:30:04   
                                阅读次数:
280
                             
                    
                        
                            
                            
                                1 using System; 2 using 
System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 
namespace 静态类密闭类 7 { 8 class Program 9 {10...
                            
                            
                                分类:
其他好文   时间:
2014-06-09 18:17:44   
                                阅读次数:
145
                             
                    
                        
                            
                            
                                using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace mapReduce
{
    public static class helper
    {
        public static Dictionary MapReduce(
          ...
                            
                            
                                分类:
其他好文   时间:
2014-06-08 10:39:41   
                                阅读次数:
227
                             
                    
                        
                            
                            
                                下面是个人理解的单例模式:using System;using 
System.Collections.Generic;using System.Linq;using System.Text;namespace 
ConsoleApplication6{ public sealed class Si.....
                            
                            
                                分类:
其他好文   时间:
2014-06-07 21:55:56   
                                阅读次数:
277