摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using ZXing.Common; using ZXing; using ZXi 阅读全文
posted @ 2021-04-30 11:20 CelonY 阅读(267) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_41796956/article/details/85044152 https://www.cnblogs.com/logon/p/3748020.html left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 r 阅读全文
posted @ 2021-04-07 09:39 CelonY 阅读(61) 评论(0) 推荐(0)
摘要: 轻量级: 1、 Dapper https://github.com/StackExchange/Dapper 2、PetaPoco https://github.com/CollaboratingPlatypus/PetaPoco 3、Massive https://github.com/Frans 阅读全文
posted @ 2021-03-05 14:16 CelonY 阅读(228) 评论(0) 推荐(0)
摘要: sql server连接oracle并实现增删改查 需要一个软件ODAC112040Xcopy_64bit 我连接的oracle是11g r2 sqlserver 是 2016 软件下载 https://pan.baidu.com/s/1OpYmpReEJcPg4wNESWy61Q 服务器先安装.n 阅读全文
posted @ 2021-02-26 21:13 CelonY 阅读(318) 评论(0) 推荐(0)
摘要: 1、引用AcReport.dll组件 2、注册组件 /// <summary> /// 注册组件 /// </summary> AcReport.AcRptEngine mac; private void SetAcRegisterInfo() { int ErrCode = 0; string E 阅读全文
posted @ 2021-02-03 21:14 CelonY 阅读(389) 评论(0) 推荐(0)
摘要: 一、创建IdentityServer4服务器 1、创建一个ASP.NET Core空项目 2、创建一个Config类 using IdentityServer4.Models; using System.Collections.Generic; namespace Sample { public s 阅读全文
posted @ 2021-01-15 21:44 CelonY 阅读(421) 评论(0) 推荐(0)
摘要: Dapper - .Net下的一个简单的ORM框架 特性 Dapper是一个NuGet库,你可以把它添加到你的项目中,扩展你的IDbConnection接口。 提供了3个方法 查询并映射一个实例集合 public static IEnumerable<T> Query<T>(this IDbConn 阅读全文
posted @ 2021-01-01 15:44 CelonY 阅读(240) 评论(0) 推荐(0)
摘要: 1 下载安装32位ODBC驱动 https://downloads.mysql.com/archives/c-odbc/ 2 设置ODCC驱动 3 设置sqlserver链接服务器 设置完成 阅读全文
posted @ 2020-12-27 13:12 CelonY 阅读(148) 评论(0) 推荐(0)
摘要: Docker中使用Mysql 拉取镜像docker pull mysql:version 运行Mysql docker run -dit -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 mysql:latest 参数列表 -dit -p 阅读全文
posted @ 2020-12-26 20:13 CelonY 阅读(71) 评论(1) 推荐(0)
摘要: https://www.cnblogs.com/zyx321/p/6491276.html System.Text.StringBuilder res = new System.Text.StringBuilder(); res.Append(" <?xml version='1.0' encodi 阅读全文
posted @ 2020-11-18 17:21 CelonY 阅读(1514) 评论(0) 推荐(0)