上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
一、 获取mysql yum源 打开地址:https://dev.mysql.com/downloads/repo/yum/,选择对应的linux系统版本 点击“No thanks, just start my download.”,进行下载,将下载地址复制,得到rpm包的地址 二、下载和mysql Read More
posted @ 2021-02-19 23:01 gygtech Views(190) Comments(0) Diggs(0) Edit
linux系统版本 版本 说明 备注 ubuntu 桌面版系统 对于不擅长系统操作命令的人员,使用比较方便 SUSE 网络服务功能强的系统 如果想把服务器充当路由设备,或邮件服务器,可以关注 Debian 安全性较好系统 有些对系统安全性要求高的企业会作为优选 Redhat 红帽公司官方系统 是很多 Read More
posted @ 2021-02-04 22:15 gygtech Views(78) Comments(0) Diggs(0) Edit
安装 进入官网:https://www.netsarang.com/zh/ 翻到最下面,下载家庭/学校免费 输入姓名,邮箱,选择需要下载的工具,过一会会发到输入的邮箱,下载安装即可 新建会话 新建会话,点击确定,输入linux系统用户名和密码登录即可 Read More
posted @ 2021-02-04 22:09 gygtech Views(143) Comments(0) Diggs(0) Edit
枚举命名规则: 1、 枚举以复数的形式命名 => 例如性别 public enum Genders { } 2、状态 以Status结尾 枚举的扩展方法:还有其他博文 using System; using System.ComponentModel; using System.Reflection Read More
posted @ 2021-02-02 23:24 gygtech Views(297) Comments(0) Diggs(0) Edit
mysql <add key="ConnectionString" value="server=远程数据库IP;database=数据库名;PORT=端口; uid=用户;pwd=密码;charset=gb2312" /> <add key="ConnectionString" value="dat Read More
posted @ 2021-01-27 22:18 gygtech Views(429) Comments(0) Diggs(0) Edit
/// <summary> /// 基于 .Net 5 /// </summary> namespace CSharp9._0 { public class FooInfo { public int FooId { get; init; } public string FooName { get; Read More
posted @ 2021-01-25 22:03 gygtech Views(384) Comments(0) Diggs(0) Edit
using System; namespace CSharp8._0 { public interface ICustom { public void Show(); public void ShowInfo() { Console.WriteLine("showinfo"); } } public Read More
posted @ 2021-01-25 00:01 gygtech Views(629) Comments(2) Diggs(0) Edit
using System; namespace CSharp7._0 { class OutClass { public static void OutTest1(out string param) { param = "参数"; } } class BaseInfo { public BaseIn Read More
posted @ 2021-01-24 22:37 gygtech Views(228) Comments(0) Diggs(0) Edit
namespace CSharp6._0 { public class EmployeeInfo { /// <summary> /// 只读属性只能通过构造函数赋值 /// </summary> /// <param name="name"></param> /// <param name="ag Read More
posted @ 2021-01-18 22:56 gygtech Views(189) Comments(0) Diggs(0) Edit
第一步:引入包 Swashbuckle.AspNetCore Microsoft.DotNet.PlatformAbstractions 第二步:设置项目属性 第三步:服务注册 private readonly string apiName = "基础用户信息服务"; #region swagger Read More
posted @ 2021-01-06 22:12 gygtech Views(254) Comments(0) Diggs(0) Edit
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页