12 lines
439 B
C#
12 lines
439 B
C#
using LinqToDB.Configuration;
|
|
|
|
namespace UserService.DatabaseLayer.DataModels
|
|
{
|
|
public class ConnectionStringSettings : IConnectionStringSettings
|
|
{
|
|
public string ConnectionString { get; } = @"Server=srvbo;Database=UserService2;Uid=UserDbAdmin;Pwd=12345678;";
|
|
public string Name { get; } = "UserServiceDb";
|
|
public string ProviderName { get; } = "MySqlServer";
|
|
public bool IsGlobal { get; }
|
|
}
|
|
} |