mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-11 02:40:55 +08:00
14 lines
170 B
C#
14 lines
170 B
C#
|
|
|
|
namespace FreeSql
|
|
{
|
|
public class FreeContext : DbContext
|
|
{
|
|
|
|
public FreeContext(IFreeSql orm)
|
|
{
|
|
_ormPriv = orm;
|
|
}
|
|
}
|
|
}
|