17 lines
No EOL
361 B
C#
17 lines
No EOL
361 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace PhoenixLib.DAL.EFCore.PGSQL
|
|
{
|
|
public interface IContextFactory<out T> where T : DbContext
|
|
{
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="T" />
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
T CreateContext();
|
|
}
|
|
} |