上一页 1 ··· 4 5 6 7 8
摘要: 在EF中,当在dbset使用join关联多表查询时,连接查询的表如果没有建立相应的外键关系时,EF生成的SQL语句是inner join(内联),对于inner join,有所了解的同学都知道,很多时候这并不是我们的本意,实例如下: EF生成了内连接(inner join)查询,当两个表的任一表的数 阅读全文
posted @ 2019-05-12 22:30 清枫林 阅读(1758) 评论(0) 推荐(0) 编辑
摘要: 很多小伙伴在创建新的类的时候都要都要手动写类的注释,如作者名称、创建日期、版本等等,当有几个类的时候还可以手动写写,但有几十个或者更多的类的时候就麻烦了,所以我们可以设定Visual Studio 2017让工具帮我们自动创建这些信息。 首先找到Class.cs这个文件 C:\Program Fil 阅读全文
posted @ 2019-05-10 16:50 清枫林 阅读(2126) 评论(0) 推荐(0) 编辑
摘要: 出现原因:当insert数据中有表情时发生。而这些表情是按照4个字节一个单位进行编码的,而我们使用的utf-8编码在mysql数据库中默认是按照3个字节一个单位进行编码的. 解决方法:将表字段字符集设置成utf8mb4 阅读全文
posted @ 2019-04-22 17:00 清枫林 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: react学习笔记 一、环境配置 1、node.js安装 二、创建第一个react项目 1、创建一个文件夹; 2、打开PowerShell,输入 npx create-react-app my-app回车,创建了项目,项目名是my-app; 3、启动项目:cd my-app,进入my-app文件夹, 阅读全文
posted @ 2019-04-02 14:56 清枫林 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 问题: try { string fileId = context.NewsT.Where(t => t.Id == Model.Id).FirstOrDefault().FileId; string filePath = context.FilesT.Where(t => t.Id == file 阅读全文
posted @ 2019-04-02 09:52 清枫林 阅读(623) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using WeChatApi.Model;using System.Linq;namespace Help{ public static class TreeGridHe 阅读全文
posted @ 2019-03-14 16:14 清枫林 阅读(618) 评论(0) 推荐(0) 编辑
摘要: 1、ef修改时指修改指定字段public void ChangePassword(int userId, string password) { var user = new User() { Id = userId, Password = password }; using (var db = ne 阅读全文
posted @ 2019-03-13 16:28 清枫林 阅读(346) 评论(0) 推荐(0) 编辑
摘要: Asp.net core 2.1发布后支持System.Drawing.Common绘图,可以做一些图片验证码之类的功能,应用程序在Windows上运行功能正常,但是部署到centos上就会报错: The type initializer for 'System.DrawingCore.GDIPlu 阅读全文
posted @ 2019-03-10 09:51 清枫林 阅读(2103) 评论(1) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Data; 6 using System.Linq; 7 using System.Text; 8 using System.Window... 阅读全文
posted @ 2017-03-28 14:53 清枫林 阅读(4801) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8