mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-15 23:42:51 +08:00
23 lines
446 B
C#
23 lines
446 B
C#
|
|
|
|
namespace FreeSql
|
|
{
|
|
public class DbContextOptionsBuilder
|
|
{
|
|
|
|
internal IFreeSql _fsql;
|
|
internal DbContextOptions _options;
|
|
|
|
public DbContextOptionsBuilder UseFreeSql(IFreeSql orm)
|
|
{
|
|
_fsql = orm;
|
|
return this;
|
|
}
|
|
public DbContextOptionsBuilder UseOptions(DbContextOptions options)
|
|
{
|
|
_options = options;
|
|
return this;
|
|
}
|
|
}
|
|
}
|