- 博客(11)
- 收藏
- 关注
原创 sql 杂
/* row_number() over ([partition by t.xx] order by t.kk /asc/desc) rn */select * from (select t1.*,row_number() over (partition by t1.Name order by t1.CreateDate desc) rn from t1inner join
2015-01-20 10:49:20 508
原创 时间戳 更新锁
public string GetTimeStamp(string id) { string result = null; // 根据借款信息表Guid标识,查询时间戳字段,并对该行添加更新锁 string strSql = "SELECT TO_CHAR(TIMESTAMP) TIMESTAMP FROM
2014-11-25 10:56:48 611
原创 inputTip css+js
请输入预约码 if ($("#SubCode").val()) { $("#SubCode").prev().hide(); }
2014-08-27 21:21:40 624
原创 js Array to C# List<Dictionary>(js 传参 自定义类列表 到C#)
@model ZACF.Site.Mvc.ViewModels.My.InterestAutoCashList 全选 月息宝 自动提现 @foreach (var item in Model.AutoCashList) {
2014-08-25 15:58:38 1077
原创 C# 线程 计划任务
using System.Threading; public void ThreadMethod() { ThreadStart ts = new ThreadStart(Method); // 若带参数 //ThreadStart ts = new ThreadStart(delegate() { Met
2014-06-25 18:13:31 502
原创 js callback 回调函数.html
function callbackTest(){ alert("a do sth before callback"); var lc_callback=function (data){ alert("balabalabala... callback return data:"+data); } kk(lc_callback); /*if(window.kSubim
2014-06-25 11:32:54 1048
原创 C# 嵌套类
public class B_Ad{ public class AdSessionNames { static public string customerId { get { return "CustomerId"; } } }; public void k() { HttpContext.Current.Sessio
2014-06-25 11:27:16 491
原创 C#: from in select ; m(linq where)
B_Apply public List RiskLink(Expression> where) { using (var dbContext = new DBContext()) { var query = dbContext.ApplyDs.Include(m => m.User).Where(wh
2014-06-25 11:19:23 8502
原创 C# Dictionary字典 T泛型反射
using Newtonsoft.Json;List listTJson = new List();List listT0 = T0Service.Get(...)List listT1 = T1Service.Get(...)...listTJson.Add(JsonConvert.SerializeObject(listT0));listTJ
2014-06-25 10:27:44 6278 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人