以下是SQL,生成的结果中是否为主键和是否可为空,是不准确的 ,没有关联相关的系统表: select '' as 业务源系统, t2.TABLE_NAME 表名称, nvl(t3.comments,'') as 表业务含义, t2.COLUMN_NAME 字段名称, t2.DATA_TYPE 字段类型, case then 'string' then 'INT' then 'decimal' then 'timestamp' then 'timestamp' then 'decimal' the…
EF Core 日志跟踪sql语句 官方文档链接:https://docs.microsoft.com/en-us/ef/core/miscellaneous/logging 1.新增自定义ILoggerProvider实现类 public class EFLoggerProvider : ILoggerProvider { public ILogger CreateLogger(string categoryName) => new EFLogger(categoryName); public…