会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
程铭
博客园
首页
新随笔
联系
订阅
管理
2024年8月9日
C# httpclient上传文件
摘要: /// <summary> /// 上传文件 /// </summary> /// <param name="file"></param> /// <returns></returns> [HttpPost, Route("UploadFile")] [NonAuthorize] public as
阅读全文
posted @ 2024-08-09 12:21 程铭
阅读(48)
评论(0)
推荐(0)
编辑
2022年3月7日
反射 根据字段名获取字段值
摘要: /// <summary> /// 根据字段名称获取字段值 /// </summary> /// <param name="fieldName"></param> /// <param name="obj"></param> /// <returns></returns> public static
阅读全文
posted @ 2022-03-07 13:37 程铭
阅读(339)
评论(0)
推荐(0)
编辑
2021年4月20日
数据库字段包括数组中的每一项
摘要: Where(x => attributeValueList.All(s => x.ProdAttributeStr.Contains(s)))
阅读全文
posted @ 2021-04-20 10:47 程铭
阅读(127)
评论(0)
推荐(0)
编辑
2021年4月19日
.NetCore 图片压缩
摘要: using System; using System.Drawing; using System.IO; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace 图片压缩 { public class
阅读全文
posted @ 2021-04-19 16:22 程铭
阅读(2064)
评论(0)
推荐(0)
编辑
2021年1月7日
NetCore3.0 EF修改
摘要: NetCore3.0 EF修改 在做修改操作的时候,有一些特殊的查询条件 建议将查询放置在修改数据之前, 因为数据从数据库中读出来的时候,对数据进行操作,修改赋值 并未进行保存的操作。再次查询的时候,数据库中的数据值已被修改,造成了脏读数据
阅读全文
posted @ 2021-01-07 10:39 程铭
阅读(410)
评论(0)
推荐(0)
编辑
2021年1月4日
NetCore 3.0 EF查询报错
摘要: 尝试查询条件后直接使用 .AsEnumerable() 然后再将复杂的查询条件进行处理 _db.phone.Where(x =>!x.IsDelete).AsEnumerable().Where(x => !x.IsDelete).ToList(); 参考文档 https://www.booksta
阅读全文
posted @ 2021-01-04 16:05 程铭
阅读(185)
评论(0)
推荐(1)
编辑
2020年12月19日
支付宝内置浏览器
摘要: 支付宝内置浏览器 调用拍照接口 默认拍照的命名规则是 image.jpg 后台对应不可使用原有图片的名称
阅读全文
posted @ 2020-12-19 08:28 程铭
阅读(1020)
评论(0)
推荐(0)
编辑
2020年12月4日
C# 图片截取 压缩
摘要: using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Text; namespace { public
阅读全文
posted @ 2020-12-04 16:23 程铭
阅读(194)
评论(0)
推荐(0)
编辑
2020年11月16日
算两个集合共有多少种配合
摘要: public static bool Do(List<GoodsSkuInfoDetail> goodsSkuInfos, List<List<KeyValue>> param) { if (param == null) { return false; } List<List<KeyValue>>
阅读全文
posted @ 2020-11-16 16:23 程铭
阅读(109)
评论(0)
推荐(0)
编辑
2020年9月19日
.NetCore GBK编码
摘要: .NetCore 程序自带无GBK编码格式 解决方法 在startup类中加上Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);即可
阅读全文
posted @ 2020-09-19 10:11 程铭
阅读(616)
评论(0)
推荐(0)
编辑
下一页