摘要:
首先准备一个要操作的类,有以下几个方法 public class Test { public void Show() { Console.WriteLine("hello"); } public void Show(string name) { Console.WriteLine($"hello { 阅读全文
摘要:
添加字段 alter table 表名 add 字段名 nvarchar(100) not null 修改字段 alter table 表名 alter column 字段名 int not null 删除字段 alter table 表名 drop column 字段名 not null 阅读全文