nexusforever/Source/NexusForever.Database/Configuration/IConnectionString.cs
Rawaho 6ebe337877 Implemented database migrations.
Moved from database first to code first.
Upgraded to EFCore 3.1.
Upgraded to .NET Core 3.1.
2020-02-29 15:44:17 +13:00

8 lines
188 B
C#

namespace NexusForever.Database.Configuration
{
public interface IConnectionString
{
DatabaseProvider Provider { get; }
string ConnectionString { get; }
}
}