上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 28 下一页
摘要: NHibernate系列教程 阅读全文
posted @ 2014-12-05 13:42 编程猴子 阅读(117) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Runtime.CompilerServices;using System.Text;using System.Threading;namespa... 阅读全文
posted @ 2014-11-18 21:06 编程猴子 阅读(156) 评论(0) 推荐(0) 编辑
摘要: url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和 delete也可以使用,但仅部分浏览器支持。timeout: 要求为Number类型的参数... 阅读全文
posted @ 2014-11-16 21:12 编程猴子 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1.启用数据迁移: enable-Migrations2.增加一条数据库迁移指令:add-Migrations 必须带上一个版本名称,比如AddUsernamePassword完整的指令:add-Migrations AddUsernamePassword3.更新数据库指令 Update-Datab... 阅读全文
posted @ 2014-11-05 09:22 编程猴子 阅读(375) 评论(0) 推荐(0) 编辑
摘要: Entity Framework 6.1-Code First 分类: Entity Framework 2014-04-21 14:56 2034人阅读 评论(0) 收藏 举报entityentity framework框架Code First-代码优先,先创建好领域模型。新建MyDbCon... 阅读全文
posted @ 2014-11-04 16:37 编程猴子 阅读(269) 评论(0) 推荐(1) 编辑
摘要: Autofac创建实例的方法总结 1、InstancePerDependency对每一个依赖或每一次调用创建一个新的唯一的实例。这也是默认的创建实例的方式。官方文档解释:Configure the component so that every dependent component or cal... 阅读全文
posted @ 2014-11-04 10:56 编程猴子 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 0))//feof用于判断文件是否结束 { $file_data=fread($fp,$buffer);//读取数据 $file_count+=$buffer; //统计读取了多少字节 //把部分数据回送给浏览器 echo $file_data; ... 阅读全文
posted @ 2014-10-26 22:15 编程猴子 阅读(215) 评论(0) 推荐(0) 编辑
摘要: "; foreach($_SERVER as $key=>$val) { echo $val.""; } echo "当前访问的IP:".$_SERVER["REMOTE_ADDR"]; if($_SERVER["REMOTE_ADDR"]=="::1") { ... 阅读全文
posted @ 2014-10-26 22:14 编程猴子 阅读(136) 评论(0) 推荐(0) 编辑
摘要: getMessage(); } //修改默认顶级异常处理函数 set_exception_handler("my_exception"); function a1($val) { if($val>100) { throw new Exception("val>100... 阅读全文
posted @ 2014-10-26 22:13 编程猴子 阅读(203) 评论(0) 推荐(0) 编辑
摘要: getMessage(); } } A(); ?> 阅读全文
posted @ 2014-10-26 22:12 编程猴子 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 28 下一页