namespace Kean.Infrastructure.Database { /// /// 表示数据库驱动 /// public interface IDriver { /// /// 创建数据库连接 /// /// 数据库连接 IDbContext CreateContext(); } }