会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
无敌师爷IT技术Blog
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
19
下一页
2021年7月19日
Odoo14学习笔记(1) 安装时报关系"ir_modul"不存在问题
摘要: 今天下载Odoo14源码,用PyCharm执行时报如下关系"ir_modul"不存在问题。 最后发现是PostgreSQL版本问题。 Odoo14仅支持PostgreSQL10.0及以上版本,而我电脑上之前安装的是9,忽视了这个要求,mark下。
阅读全文
posted @ 2021-07-19 14:57 无敌师爷IT技术Blog
阅读(490)
评论(0)
推荐(0)
2021年7月14日
大叔学Spring Boot笔记(15)MyBatis-Plus中LambdaQueryWrapper的使用
摘要: 今天写模糊查询时写了如下方法: 1 EntityWrapper wrapper = new EntityWrapper<ExpertEntity>(); 2 wrapper.like("ExpertId", keywords); 3 wrapper.like("ExpertName", keywor
阅读全文
posted @ 2021-07-14 13:42 无敌师爷IT技术Blog
阅读(1413)
评论(0)
推荐(0)
2021年2月2日
SqlSugar使用笔记(1)简单介绍
摘要: 这两年项目中一直在使用SqlSugar框架,最近准备做下总结,相关的帖子会陆续发出。SqlSugar具体介绍在此就不再啰嗦,网上sunkaixuan等大神们都做了很全的文档,在这里我只转载2个图片,基本上能表达出SqlSugar的实现原理。 【附】Gitee资料地址: https://gitee.c
阅读全文
posted @ 2021-02-02 16:35 无敌师爷IT技术Blog
阅读(459)
评论(0)
推荐(1)
2021年1月27日
Nginx系统学习笔记(3)同一端口下设置Alias(虚拟目录)
摘要: server { listen 8080; server_name localhost; location / { root C:/nginx-1.14.2/html/xxx; index index.html index.htm; try_files $uri $uri/ /index.html;
阅读全文
posted @ 2021-01-27 10:38 无敌师爷IT技术Blog
阅读(156)
评论(0)
推荐(0)
2020年12月29日
.Net操作Sharepoint常用方法(10) 获取列表Item列表方法
摘要: private static ListItemCollection GetSharepointItemList(Guid SPListId, string FilterCondition) { ListItemCollection list = null; try { ClientContext c
阅读全文
posted @ 2020-12-29 15:05 无敌师爷IT技术Blog
阅读(212)
评论(0)
推荐(0)
.Net操作Sharepoint常用方法(9) clientContext.Web.SiteUsers.GetByEmail()方法返回找不到用户问题
摘要: 使用下方法提取用户时,出现部分用户无法找到的问题,但一旦“检查权限”后就能找到。 记录下这个问题的处理方式,虽然还没彻底理解。 User user = clientContext.Web.SiteUsers.GetByEmail(email) 一位国外小伙伴也碰到了同样问题,他的方案是用Ensure
阅读全文
posted @ 2020-12-29 11:36 无敌师爷IT技术Blog
阅读(144)
评论(0)
推荐(0)
2020年12月28日
.Net操作Sharepoint常用方法(8) User Profile字段列表
摘要: 名称 显示名称 SPS-Section-BasicInfo 基本信息 UserProfile_GUID Id SID SID ADGuid Active Directory ID AccountName 帐户名 FirstName 名字 SPS-PhoneticFirstName 拼音名 LastN
阅读全文
posted @ 2020-12-28 19:07 无敌师爷IT技术Blog
阅读(122)
评论(0)
推荐(0)
.Net操作Sharepoint常用方法(7) 根据邮箱或域账号获取用户信息
摘要: private static UserModel GetUserByEmail(string email) { UserModel userModel = null; try { OfficeDevPnP.Core.AuthenticationManager authManager = new Of
阅读全文
posted @ 2020-12-28 16:32 无敌师爷IT技术Blog
阅读(324)
评论(0)
推荐(0)
.Net操作Sharepoint常用方法(5) 新增Item
摘要: private static void CreateNewItem(string ClassId, string errorMessage) { try { Guid SPListId = new Guid(ConfigurationHelper.GetSPListId()); OfficeDevP
阅读全文
posted @ 2020-12-28 15:34 无敌师爷IT技术Blog
阅读(173)
评论(0)
推荐(0)
.Net操作Sharepoint常用方法(6) 根据ID修改Item
摘要: private static void UpdateItemById(string ItemId, string errorMessage) { try { Guid SPListId = new Guid(ConfigurationHelper.GetSPClassDataImportResult
阅读全文
posted @ 2020-12-28 09:51 无敌师爷IT技术Blog
阅读(123)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
19
下一页
公告