mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-24 03:32:50 +08:00
14 lines
166 B
C#
14 lines
166 B
C#
|
|
|
|
namespace FreeSql
|
|
{
|
|
public class FreeContext : DbContext
|
|
{
|
|
|
|
public FreeContext(IFreeSql orm)
|
|
{
|
|
_orm = orm;
|
|
}
|
|
}
|
|
}
|