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