今天在用EF做插入操作的时候发现数据库中一个datetime类型的字段(CreateDate)的值居然全部为null。于是赶紧看表结构发现CreateDate字段居然是允许为空的。虽然为空,但是设置了默认值getdate(),按说不应该为null的。于是开始测试。字段允许Null值的情况Users表...
分类:
其他好文 时间:
2014-09-02 15:23:24
阅读次数:
208
原文: DateTime.ToString("dd/MM/yyyy");后,不能直接Convert.ToDateTime的解决: DateTime.ToString("dd/MM/yyyy");后,不能直接Convert.ToDateTime的解决: DateTime.ParseExact(this...
分类:
其他好文 时间:
2014-09-02 03:45:34
阅读次数:
167
Json.net 效率 Json.net 的特性 1.net 集合 1.1 无序集合 Dictionary,Hashtable Hashtable ht = new Hashtable();ht.Add("string", "Hashtable");ht.Add("DateTime", System...
分类:
Web程序 时间:
2014-09-01 17:20:03
阅读次数:
425
Controller 到 View1 强类型控制器 // GET: /Test/ public ActionResult Index() { DateTime date = DateTime.Now; //大部分时候使用自定义类型 ...
分类:
Web程序 时间:
2014-09-01 15:26:43
阅读次数:
227
First DateTime Limit: 3000ms, Special Time Limit:7500ms, Memory Limit:65536KBTotal submit users: 77, Accepted users: 46Problem 12952 : No special judg...
分类:
其他好文 时间:
2014-08-31 22:49:02
阅读次数:
301
模板 上篇博文学习了动态视图,但是,视图中返回文本的方式有点特别。 也就是说,HTML被直接硬编码在 Python 代码之中。1 def current_datetime(request):2 now = datetime.datetime.now()3 html = "It is...
分类:
编程语言 时间:
2014-08-31 13:03:11
阅读次数:
243
import sysimport datetimefor line in sys.stdin: line = line.strip() userid, movieid, rating, unixtime = line.split('\t') weekday = datetime.datetim...
分类:
其他好文 时间:
2014-08-31 00:17:50
阅读次数:
1780
ASP.NET中的cookie:创建Cookie方法 (1) Response.Cookies["userName"].Value=“admin"; Response.Cookies[“userName”].Expires=DateTime.Now.AddDays(1); //如果不设置失效时间.....
分类:
其他好文 时间:
2014-08-30 17:41:49
阅读次数:
209
1.与ANSI和ISO8601标准的一致性不同datetime不符合该标准,datetime2符合该标准。对于新的应用,尽量使用符合标准的类型。2.表示范围的不同datetime:1753-01-01 00:00:00 到 9999-12-31 23:59:59.997datetime2:0000-...
分类:
其他好文 时间:
2014-08-30 17:33:19
阅读次数:
160
数据库日期和时间类型相互转换 time ? date time ? smalldatetime time ? datetime time ? datetime2 time ? datetimeoffset date ? smalldatetime date ? datetime date ? dat...
分类:
数据库 时间:
2014-08-30 02:20:58
阅读次数:
413