2017-03-04 00:54:19 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace OrmTest
|
|
|
|
|
{
|
2019-06-02 10:18:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Setting up the database name does not require you to create the database
|
|
|
|
|
/// 设置好数据库名不需要你去手动建库
|
|
|
|
|
/// </summary>
|
2017-03-04 00:54:19 +08:00
|
|
|
|
public class Config
|
|
|
|
|
{
|
2019-06-02 10:18:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Account have permission to create database
|
|
|
|
|
/// 用有建库权限的数据库账号
|
|
|
|
|
/// </summary>
|
2021-03-01 13:55:52 +08:00
|
|
|
|
public static string ConnectionString = "server=.;uid=sa;pwd=sasa;database=SQLSUGAR4XTEST";
|
2019-06-02 10:18:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Account have permission to create database
|
|
|
|
|
/// 用有建库权限的数据库账号
|
|
|
|
|
/// </summary>
|
2021-03-01 13:55:52 +08:00
|
|
|
|
public static string ConnectionString2 = "server=.;uid=sa;pwd=sasa;database=SQLSUGAR4XTEST2";
|
2019-06-02 10:18:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Account have permission to create database
|
|
|
|
|
/// 用有建库权限的数据库账号
|
|
|
|
|
/// </summary>
|
2021-03-01 13:55:52 +08:00
|
|
|
|
public static string ConnectionString3 = "server=.;uid=sa;pwd=sasa;database=SQLSUGAR4XTEST3";
|
2017-03-04 00:54:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|