mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-07 00:40:55 +08:00
14 lines
233 B
C#
14 lines
233 B
C#
|
|
|
|
namespace FreeSql
|
|
{
|
|
public class FreeContext : DbContext
|
|
{
|
|
|
|
public FreeContext(IFreeSql orm)
|
|
{
|
|
_ormScoped = DbContextScopedFreeSql.Create(orm, () => this, () => UnitOfWork);
|
|
}
|
|
}
|
|
}
|