mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-29 22:22:51 +08:00
19 lines
371 B
C#
19 lines
371 B
C#
using Microsoft.Extensions.Caching.Distributed;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
using System.Text;
|
|
|
|
namespace FreeSql {
|
|
public class DbContextOptionsBuilder {
|
|
|
|
internal IFreeSql _fsql;
|
|
|
|
public DbContextOptionsBuilder UseFreeSql(IFreeSql orm) {
|
|
_fsql = orm;
|
|
return this;
|
|
}
|
|
}
|
|
}
|