mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-03-09 07:30:56 +08:00
17 lines
249 B
C#
17 lines
249 B
C#
|
|
|
|
namespace FreeSql
|
|
{
|
|
public class DbContextOptionsBuilder
|
|
{
|
|
|
|
internal IFreeSql _fsql;
|
|
|
|
public DbContextOptionsBuilder UseFreeSql(IFreeSql orm)
|
|
{
|
|
_fsql = orm;
|
|
return this;
|
|
}
|
|
}
|
|
}
|