try another way to implement the data stucture

This commit is contained in:
2020-09-30 22:05:18 +02:00
parent 410062daae
commit 1b387adae1
19 changed files with 234 additions and 257 deletions

View File

@ -0,0 +1,12 @@
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; }
}
}