11 2018 档案
摘要:多对多配置 先安装 Install Package MySql.Data.EntityFrameworkCore 创建3个表 创建类 编写DbContext,ef core的DbContext等EF的核心类在using Microsoft.EntityFrameworkCore; 通过 这样的扩展方
阅读全文
摘要:setting.json 引用Nuget: 和`Microsoft.Extensions.Configuration.Json` 参考:https://docs.microsoft.com/zh cn/aspnet/core/fundamentals/configuration/index?view
阅读全文
摘要:1.安装图形界面 sudo apt get update 更新 1.[ 云服务器 ]——桌面安装:腾讯云服务器Gnome桌面安装与配置 https://blog.csdn.net/jdzwanghao/article/details/79875536?utm_source=blogxgwz1 2.腾
阅读全文
摘要:``` using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.Common; using System.Data.SqlClient; using System.Linq; using Dapper; namespace DA...
阅读全文
摘要:1.顺序表 只考虑线性表的基本操作,所以以C 接口的形式表示线性表,接口中的方法成员表示基本操作。 1.1 公共接口 为了和.NET框架中的接口IList相区分,在IList后面加了“DS”,“DS”表示数据结构。 1、求长度:GetLength() 初始条件:线性表存在; 操作结果:返回线性表中所
阅读全文