[转]Oracle 中计算时间间隔的SQL 语句
摘要:select sysdate - interval '60' second as TSec from dual -- 计算 60秒 前的时间 select sysdate - interval '10' minute as TMin from dual -- 计算 10分 前的时间 select sysdate - interval '8' hour as UTCTime from dual...
阅读全文
posted @
2018-02-25 17:24
z5337
阅读(988)
推荐(0) 编辑
[C#]反射遍历对象属性
摘要:/// /// C#反射遍历对象属性 /// /// 对象类型 /// 对象 public static void ForeachClassProperties(T model) { Type t = model.GetType(); ...
阅读全文
posted @
2018-02-01 20:10
z5337
阅读(163)
推荐(0) 编辑
[C#][MVC]DropDownListFor 默认值无法选中的 BUG
摘要:本文来自:https://www.cnblogs.com/craze/p/6124575.html 关于mvc中@Html.DropDownListFor和@Html.DropDownList默认值无法选中问题简单总结 结论: 无法绑定默认值是微软MVC的一个BUG 触发条件: 整个Controll
阅读全文
posted @
2018-02-01 10:33
z5337
阅读(330)
推荐(0) 编辑