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