server-master/srcs/PhoenixLib.DAL.EFCore.PGSQL/IContextFactory.cs
2026-02-10 18:21:30 +01:00

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();
}
}