走路应该留下脚印

人生的代码我来书写

导航

2018年6月27日 #

.net Cache 需要注意的地方

摘要: 需要注意的是,当cache被更新也会调用callback,触发时 枚举状态是System.Runtime.Caching.CacheEntryRemovedReason.Removed 但是cache并不会删除掉。 阅读全文

posted @ 2018-06-27 11:45 wingfay 阅读(166) 评论(0) 推荐(0) 编辑

SQL 字段修改

摘要: 1、修改字段名: alter table 表名 rename column A to B 2、修改字段类型: alter table 表名 alter column 字段名 type not null 3、修改字段默认值 alter table 表名 add default (0) for 字段名 阅读全文

posted @ 2018-06-27 11:40 wingfay 阅读(667) 评论(0) 推荐(0) 编辑