上一页 1 ··· 98 99 100 101 102 103 104 105 106 ··· 112 下一页
摘要: select b,c,CASE a WHEN '1' THEN '1001' WHEN '2' THEN '1002'ELSE '1003' end from test1 阅读全文
posted @ 2015-09-15 11:51 甜菜波波 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: if exists(select * from test.dbo.test1 where a='1')beginprint('exists ')endelse begin print('no exists ') endgo 阅读全文
posted @ 2015-09-15 11:31 甜菜波波 阅读(3561) 评论(0) 推荐(0) 编辑
摘要: IF ELSE 语句 IF ELSE 是最基本的编程语句结构之一几乎每一种编程语言都支持这种结构而 它在用于对从数据库返回的数据进行检查是非常有用的TRANSACT-SQL 使用IF ELSE 的例子如下 语法 if (condition) begin (statement block) end e... 阅读全文
posted @ 2015-09-15 11:16 甜菜波波 阅读(20114) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-09-11 14:15 甜菜波波 阅读(156) 评论(0) 推荐(0) 编辑
摘要: EF分页代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;public part... 阅读全文
posted @ 2015-09-07 15:05 甜菜波波 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 1.首先加入以下代码 View Code2.json.ashx代码如下using System;using System.Web;using System.Linq;using System.C... 阅读全文
posted @ 2015-09-07 15:02 甜菜波波 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 泛型接口和泛型委托中经常使用可变性in 逆变,out 协变从 list转到list 称为协变 (string 从object 派生,那么 string 转成object 是合理的,子类替换父类是合理的,)从list 转到 list 称为逆变 (经object 转成string ,将父类转成子类,是不... 阅读全文
posted @ 2015-08-26 17:44 甜菜波波 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 在.Net 中,程序集(Assembly)中保存了元数据(MetaData)信息,因此就可以通过分析元数据来获取程序集中的内容,比如类,方法,属性等,这大大方便了在运行时去动态创建实例。MSDN解释如下:反射提供了封装程序集、模块和类型的对象(Type 类型)。可以使用反射动态创建类型的实例,将类型... 阅读全文
posted @ 2015-08-25 10:41 甜菜波波 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 经过测试,如果显示声明有参构造函数,用反射实例化的时候,就需要传入构造函数的参数,如果同时声明了有参和无参构造函数 或只声明了无参构造函数则不需要传入参数,直接可以获取实例 //显示无参构造函数,如果只显示定义了有参构造函数,就不能使用如下代码反射创建实例对象 //var art = Assemb... 阅读全文
posted @ 2015-08-25 10:02 甜菜波波 阅读(1903) 评论(0) 推荐(0) 编辑
摘要: 1.新建一个控制台应用程序 TestIOC2.新增一个 IocFactory类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml;using System... 阅读全文
posted @ 2015-08-20 14:01 甜菜波波 阅读(621) 评论(0) 推荐(0) 编辑
上一页 1 ··· 98 99 100 101 102 103 104 105 106 ··· 112 下一页