代码改变世界

Ionic3 创建应用(Android)

2017-06-28 11:20 by 小猫爱吃清蒸鱼, 336 阅读, 0 推荐, 收藏, 编辑
摘要:ionic start myApp blank 空白App ionic start myApp tabs 导航条 ionic start myApp sidemenu 滑动菜单 进入App目录,cd myApp ionic serve 阅读全文

SQL语句查询表中的所有约束

2017-04-07 09:57 by 小猫爱吃清蒸鱼, 7264 阅读, 0 推荐, 收藏, 编辑
摘要:select * from sysobjects where parent_obj in(select id from sysobjects where name='表名') 或者 exec sp_helpconstraint @objname='表名' 阅读全文

删除数据库中的所有表,同时忽略约束

2017-04-06 14:03 by 小猫爱吃清蒸鱼, 276 阅读, 0 推荐, 收藏, 编辑
摘要:select 'drop table '+name+';' from sys.tables select 'alter table '+name+' nocheck constraint all' from sysobjects where type='U' 阅读全文

Abp框架: Mapper not initialized. Call Initialize with appropriate configuration.

2017-03-24 15:18 by 小猫爱吃清蒸鱼, 1385 阅读, 0 推荐, 收藏, 编辑
摘要:编写一个相关AutoMapper映射后,出现图上错误。 检查过相关配置: 映射类所在项目类ApplicationModule.cs中有添加相关依赖[DependsOn(typeof(LMCoreModule), typeof(AbpAutoMapperModule))] 具体调用映射类配置,需要在“ 阅读全文

Python模块-Pylint

2016-07-21 16:53 by 小猫爱吃清蒸鱼, 283 阅读, 0 推荐, 收藏, 编辑
摘要:安装 pip install pylint 阅读全文