* AB8828 - Migrated ShadowFileSystemTests.cs Note that the underlying behavior of Directory.EnumerateFiles is changed when search pattern is "". "" is not handled like "*" in netcore. * AB8828 - Migrated ScopeEventDispatcherTests.cs * AB8828 - Migrated DistributedCacheBinderTests.cs * AB8828 - Migrated SchemaValidationTest.cs * AB8828 - Migrated LocksTests.cs * AB8828 - Migrated SqlCeTableByTableTest.cs (and renamed to SqlServerTableByTableTest.cs) * AB8828 - Created DatabaseBuilderTests * AB8828 - Fix issues with file systems for linux
10 lines
206 B
C#
10 lines
206 B
C#
namespace Umbraco.Core.Persistence
|
|
{
|
|
public interface IEmbeddedDatabaseCreator
|
|
{
|
|
string ProviderName { get; }
|
|
string ConnectionString { get; set; }
|
|
void Create();
|
|
}
|
|
}
|