码迷,mamicode.com
首页 >  
搜索关键字:enable    ( 5784个结果
EF控制台常用命令
打开Nuget 程序包管理控制台输入:Enable-Migrations 回车如果正确的话 则显示已为项目 xxx启用 Code First 迁移。我在这里说下 几种有可能出现的错误:1.No context type was found in the assembly xxx在当前项目中 没有找到...
分类:其他好文   时间:2015-01-12 11:22:21    阅读次数:165
如何屏蔽触发器和恢复触发器
原文: 如何屏蔽触发器和恢复触发器 禁用: ALTER TABLE trig_example DISABLE TRIGGER trig1 GO 恢复: ALTER TABLE trig_example ENABLE TRIGGER trig1 GO -------------------------...
分类:其他好文   时间:2015-01-12 09:13:52    阅读次数:147
安装 Apache 源代码包
把自己在网易博客的文章迁移过来cd /lamp/httpd-2.2.9./configure --prefix=/usr/local/apache2/--sysconfdir=/usr/local/apache2/etc/ --with-included-apr --enable-dav--enab...
分类:Web程序   时间:2015-01-11 22:49:57    阅读次数:242
vsftp快速配置
/etc/vsftpd/vsftpd.confanonymous_enable=YESlocal_enable=YESwrite_enable=YESlocal_umask=022dirmessage_enable=YESxferlog_enable=YESconnect_from_port_20=...
分类:其他好文   时间:2015-01-11 12:17:03    阅读次数:214
Using TCP keepalive under Linux
Linux has built-in support for keepalive. You need to enable TCP/IP networking in order to use it. You also needprocfssupport andsysctlsupport to be ....
分类:系统相关   时间:2015-01-11 12:13:12    阅读次数:150
数据库中已存在名为 'View_Business' 的对象。
用EF框架+MCF,编译的时候出现:数据库中已存在名为 'View_Business' 的对象。解决方案:1.Enable-Migrations2.Add-Migration3.Update-Database -Verbose进行数据库更新。
分类:数据库   时间:2015-01-09 19:17:11    阅读次数:1299
the virtual machine is configured for 64-bit guest operating systems
解决办法:修改BIOS设置  Security--Virtualization--Inter(R) Virtualization Technolog 设置为enable 本机安装的是WIN 7 ,详细版本是:Windows 7 Ultimate, 32-bit 6.1.7601, Service Pack 1 。虚拟机版本:7.1.2 build-301548.在虚拟机上安...
分类:系统相关   时间:2015-01-09 15:34:34    阅读次数:545
unity3d中脚本生命周期(MonoBehaviour lifecycle)
接下来,做出一下讲解:最先执行的方法是Awake,这是生命周期的开始,用于进行激活时的初始化代码,一般可以在这个地方将当前脚本禁用:this.enable=false,如果这样做了,则会直接跳转到OnDisable方法执行一次,然后其它的任何方法,都将不再被执行。 如果当前脚本处于可用状态,则正常的执行顺序是继续向下执行OnEnable,当然我们可以在另外一个脚本中实现这个脚本组件的启动:t...
分类:编程语言   时间:2015-01-09 15:32:54    阅读次数:240
Centos7下搭建LAMP平台环境
1.启用Apache2Centos7默认已经安装httpd服务,只是没有启动。如果你需要全新安装,可以yum install -y httpd启动服务:systemctl start httpd.service设置开机自动启动:systemctl enable httpd.serviceHTTP服务...
分类:其他好文   时间:2015-01-09 14:12:53    阅读次数:195
源码安装PHP
下载链接:http://php.net/downloads.phpphp-5.4.36.tar.gztarzxfphp-5.4.36.tar.gzcdphp-5.4.36./configure--prefix=/usr/local/php5.4--with-mysql=/usr/local/mysql--with-mysqli=/usr/bin/mysql_config--with-pdo-mysql=/usr/bin/mysql_config--with-openssl--enable-mbstr..
分类:Web程序   时间:2015-01-09 01:50:47    阅读次数:157
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!