diff --git a/Src/Asp.Net/SqlServerTest/Config.cs b/Src/Asp.Net/SqlServerTest/Config.cs index 8a5e3975f..3a8194a1b 100644 --- a/Src/Asp.Net/SqlServerTest/Config.cs +++ b/Src/Asp.Net/SqlServerTest/Config.cs @@ -6,10 +6,26 @@ using System.Threading.Tasks; namespace OrmTest { + /// + /// Setting up the database name does not require you to create the database + /// 设置好数据库名不需要你去手动建库 + /// public class Config { + /// + /// Account have permission to create database + /// 用有建库权限的数据库账号 + /// public static string ConnectionString = "server=.;uid=sa;pwd=haosql;database=SQLSUGAR4XTEST"; + /// + /// Account have permission to create database + /// 用有建库权限的数据库账号 + /// public static string ConnectionString2 = "server=.;uid=sa;pwd=haosql;database=SQLSUGAR4XTEST2"; + /// + /// Account have permission to create database + /// 用有建库权限的数据库账号 + /// public static string ConnectionString3 = "server=.;uid=sa;pwd=haosql;database=SQLSUGAR4XTEST3"; } }