Class ReflectionBasedDbFactory
Inheritance
ReflectionBasedDbFactory
Assembly: FluentMigrator.Runner.Core.dll
Syntax
public class ReflectionBasedDbFactory : DbFactoryBase, IDbFactory
Constructors
|
Edit this page
View Source
ReflectionBasedDbFactory(params TestEntry[])
Declaration
[Obsolete]
protected ReflectionBasedDbFactory(params ReflectionBasedDbFactory.TestEntry[] testEntries)
Parameters
Type |
Name |
Description |
TestEntry[] |
testEntries |
|
|
Edit this page
View Source
ReflectionBasedDbFactory(IServiceProvider, params TestEntry[])
Declaration
protected ReflectionBasedDbFactory(IServiceProvider serviceProvider, params ReflectionBasedDbFactory.TestEntry[] testEntries)
Parameters
|
Edit this page
View Source
ReflectionBasedDbFactory(string, string)
Declaration
[Obsolete]
public ReflectionBasedDbFactory(string assemblyName, string dbProviderFactoryTypeName)
Parameters
Type |
Name |
Description |
string |
assemblyName |
|
string |
dbProviderFactoryTypeName |
|
Methods
|
Edit this page
View Source
CreateFactory()
Declaration
protected override DbProviderFactory CreateFactory()
Returns
Overrides
|
Edit this page
View Source
TryCreateFactory(IEnumerable<TestEntry>, ICollection<Exception>, out DbProviderFactory)
Declaration
[Obsolete]
protected static bool TryCreateFactory(IEnumerable<ReflectionBasedDbFactory.TestEntry> entries, ICollection<Exception> exceptions, out DbProviderFactory factory)
Parameters
Returns
|
Edit this page
View Source
TryCreateFactory(IServiceProvider, IEnumerable<TestEntry>, ICollection<Exception>, out DbProviderFactory)
Declaration
protected static bool TryCreateFactory(IServiceProvider serviceProvider, IEnumerable<ReflectionBasedDbFactory.TestEntry> entries, ICollection<Exception> exceptions, out DbProviderFactory factory)
Parameters
Returns
|
Edit this page
View Source
TryCreateFactoryFromRuntimeHost(TestEntry, ICollection<Exception>, out DbProviderFactory)
Declaration
[Obsolete]
protected static bool TryCreateFactoryFromRuntimeHost(ReflectionBasedDbFactory.TestEntry entry, ICollection<Exception> exceptions, out DbProviderFactory factory)
Parameters
Returns
|
Edit this page
View Source
TryCreateFactoryFromRuntimeHost(TestEntry, ICollection<Exception>, IServiceProvider, out DbProviderFactory)
Declaration
protected static bool TryCreateFactoryFromRuntimeHost(ReflectionBasedDbFactory.TestEntry entry, ICollection<Exception> exceptions, IServiceProvider serviceProvider, out DbProviderFactory factory)
Parameters
Returns
|
Edit this page
View Source
TryCreateFromAppDomainPaths(TestEntry, ICollection<Exception>, out DbProviderFactory)
Declaration
protected static bool TryCreateFromAppDomainPaths(ReflectionBasedDbFactory.TestEntry entry, ICollection<Exception> exceptions, out DbProviderFactory factory)
Parameters
Returns
|
Edit this page
View Source
TryLoadAssemblyFromAppDomainDirectories(string, ICollection<Exception>, out Assembly)
Declaration
protected static bool TryLoadAssemblyFromAppDomainDirectories(string assemblyName, ICollection<Exception> exceptions, out Assembly assembly)
Parameters
Returns
|
Edit this page
View Source
TryLoadAssemblyFromDirectories(IEnumerable<string>, string, ICollection<Exception>, out Assembly)
Declaration
protected static bool TryLoadAssemblyFromDirectories(IEnumerable<string> directories, string assemblyName, ICollection<Exception> exceptions, out Assembly assembly)
Parameters
Returns
Implements