GORM的用法迁移(AutoMigrate) 介绍GORM 的 AutoMigrate() 方法用于自动迁移 ORM 的 Schemas。所谓 “迁移” 就是刷新数据库中的表格定义,使其保持最新(只增不减)。 AutoMigrate 会创建(新的)表、缺少的外键、约束、列和索引,并且会更改现有列的类型(如果其大小、精度、是否为空可更改的话)。但不会删除未使用的列,以保护现存的数据。 数据库版本控制 需要注 2020-12-16 Go语言开发 #GORM
自定义配置HttpClient完全封装 HttpClient 自定义 HttpClientFactory 请求类 12345678910111213141516171819202122public interface ISampleClient{ Task<string> GetData();}public class SampleClient : ISampleClient{ 2020-12-15 .NET开发 #AspNetCore
指定AspNetCore运行地址的方法How to specify the port an ASP.NET Core application is hosted on?In ASP.NET Core 3.1, there are 4 main ways to specify a custom port: Using command line arguments, by starting your .NET application wi 2020-12-15 .NET开发 #AspNetCore