usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Data;usingSystem.Web.SessionState;namespacefriends{//////Hand...
分类:
其他好文 时间:
2014-05-16 03:53:53
阅读次数:
381
program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace GroupBoxTest13
{
static class Program
{
///
/// 应用程序的...
分类:
其他好文 时间:
2014-05-16 01:56:45
阅读次数:
319
一.简介ALinq Dynamic 为ALinq以及Linq to SQL提供了一个Entiy
SQL的查询接口,使得它们能够应用Entity SQL 进行数据的查询。它的原理是将Entiy SQL解释为Linq表达式,再执行生成的Linq表达式。1.关于
Entity SQLEntity SQL是...
分类:
其他好文 时间:
2014-05-16 01:09:50
阅读次数:
253
这篇文章决定对最近一个单机版Web程序用到的东西总结一下。一、反射Linq之OrderBy
动态Linq结合反射对某字段排序:namespace 动态Linq{ class Program { static void Main(string[]
args) ...
分类:
其他好文 时间:
2014-05-16 00:40:13
阅读次数:
414
本篇简单回顾C#语言集合操作的变化,通过与Linq对等的面向对象的语法来认识Linq。Linq是Language Integrated Query,
初识Linq感觉跟SQL Server的Tsql很像,可以进行语言必备的逻辑操作,也可以实现对集合的直接查询。Net1.X时代C#不支持泛型,集合用元...
分类:
其他好文 时间:
2014-05-16 00:19:36
阅读次数:
427
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6
using System.Security....
分类:
其他好文 时间:
2014-05-15 17:20:45
阅读次数:
329
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Data;using System.Reflection;namespace TestConsole{ ...
分类:
其他好文 时间:
2014-05-15 17:07:04
阅读次数:
187
好好学习c#代码,学了怎么调用类using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace robot{
class Program { static...
分类:
其他好文 时间:
2014-05-15 10:45:07
阅读次数:
263
using System;using System.Collections.Generic;using
System.Linq;using System.Text;namespace MegreSort{ class Program { static void
Main(s...
分类:
其他好文 时间:
2014-05-15 09:21:59
阅读次数:
171
三级级联查询省份名称和编码(保证名称不重复)的SQL语句
1、省份、地市和县级数据库表
2、SQL语句
SELECT DISTINCT t.`province_name`,t.`province_code` FROM t_area_tab t
3、查询结果...
分类:
数据库 时间:
2014-05-15 01:10:04
阅读次数:
435