mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-29 22:22:51 +08:00
14 lines
195 B
C#
14 lines
195 B
C#
|
|
|
|
namespace FreeSql {
|
|
public class DbContextOptionsBuilder {
|
|
|
|
internal IFreeSql _fsql;
|
|
|
|
public DbContextOptionsBuilder UseFreeSql(IFreeSql orm) {
|
|
_fsql = orm;
|
|
return this;
|
|
}
|
|
}
|
|
}
|