摘要:
找到全部子集 WITH TEMP AS ( SELECT * FROM CM_Region WHERE RegionCode='110000' UNION ALL SELECT T0.* FROM TEMP,CM_Region T0 WHERE TEMP.RegionCode=T0.ParentCo 阅读全文
摘要:
//var aaaa = new {Id=1,Name="Test"}; //匿名类字段只读不可写 dynamicaaaa = new {Id=1,Name="Test"}; //匿名类字段只读不可写aaaa.Id = 2; //不可写 报错无法为属性或索引器“<>f__AnonymousType1 阅读全文
摘要:
Task t = new Task(new Action(() => { //推送产品 PushProduct(mPromoteSet, promoteId); })); t.Start(); //阻塞50毫秒是确保推送产品确保到了平台服务端在关闭窗口 System.Threading.Thread 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 数据库的读取{ using System.Data;... 阅读全文