反射工具类请参见:https://www.cnblogs.com/threadj/p/10535796.html using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Collections; using System.Collections.Specialized; using System.Reflection; namespace ReligionS…
反射工具类请参见:https://www.cnblogs.com/threadj/p/10535796.html using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Reflection; namespace ReligionServer.util { public class BeanUtil { /// <summary> /// 两个对象的相同属…
CASE函数 作用: 可以将查询结果集的某一列的字段值进行替换 它可以生成一个新列 相当于switch...case和 if..else 使用语法: case 表达式/字段 when 值 then 自定义值 else end as 别名 when 值 then:可以理解为当某个字段为某个值的时候,然后就返回自定义值将结果集的字段值进行替换 else:如果上面的when都不满足就执行else结果 常用用法一(case后面有字段或者表达式): when关键字后面写固定值 case关键字后面如果有…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Reflection; namespace ReligionServer.util{ /// <summary> /// 反射工具类 /// </summary> public class ReflectionUtil{ public static void MyInvoke(HttpCo…