mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-24 03:32:50 +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);
|
|
}
|
|
}
|
|
}
|