摘要: 阅读全文
posted @ 2019-11-25 11:50 上帝视角 阅读(415) 评论(0) 推荐(0)
摘要: abp book案例中报错 坑2对不起,在处理你的请求期间,产生了一个服务器内部错误! abp Could not cast or convert from System.Int64 to System.CollectionsExtraProperties 必须是json 格式 要不然报错 阅读全文
posted @ 2019-11-25 11:40 上帝视角 阅读(2028) 评论(0) 推荐(0)
摘要: https://abp.io/ public interface IBookAppService : ICrudAppService< //定义了CRUD方法 BookDto, //用来展示书籍 Guid, //Book实体的主键 PagedAndSortedResultRequestDto, // 阅读全文
posted @ 2019-11-22 08:56 上帝视角 阅读(772) 评论(1) 推荐(1)
摘要: ComponentModel.DataAnnotations.Schema 引用ComponentModel.DataAnnotations 找不到 看版本 4.5以上才有 Schema 阅读全文
posted @ 2019-11-07 15:15 上帝视角 阅读(217) 评论(0) 推荐(0)
摘要: netcode vs17 说不启动dotnet.exe 在 2019 提示 该项目不知道如何运行配置文件 IIS Express vs17 就不清楚怎么弄 不是环境变量问题 配置没有配好 改下启动项 在项目属性里 阅读全文
posted @ 2019-11-01 17:07 上帝视角 阅读(1435) 评论(0) 推荐(0)
摘要: 其实很简单 只是在事件里去改变PrintDocument 里面的 PrintController 下面//*******************************<<<<<<为重点代码 写事件 我思考了半天 网上没有例子 我就先给出来了 如果对你有帮助 望客官打赏下 阅读全文
posted @ 2019-04-15 15:06 上帝视角 阅读(1039) 评论(1) 推荐(0)
摘要: void dockedBarControl_Paint(object sender, PaintEventArgs e) { if (_unreadAmount > 0) { Graphics g = e.Graphics; g.CompositingMode = CompositingMode.S 阅读全文
posted @ 2019-04-11 14:41 上帝视角 阅读(329) 评论(0) 推荐(0)
摘要: using System;using System.IO;using System.IO.Compression;using System.Net;using System.Net.Security;using System.Security.Cryptography.X509Certificate 阅读全文
posted @ 2018-11-10 08:26 上帝视角 阅读(966) 评论(0) 推荐(1)
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; using System. 阅读全文
posted @ 2018-06-06 16:20 上帝视角 阅读(187) 评论(0) 推荐(0)
摘要: DECLARE @StartTime AS DATETIME SET @StartTime= '2016-5-10 ' DECLARE @t TABLE(dDate DATETIME) --计算连续时间 WHILE @StartTime <= '2016-5-13 ' BEGIN INSERT IN 阅读全文
posted @ 2018-06-01 15:02 上帝视角 阅读(119) 评论(0) 推荐(0)