mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 16:20:52 +08:00
14 lines
311 B
C#
14 lines
311 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Yi.Framework.Common.Enum;
|
|
|
|
namespace Yi.Framework.Model.ModelFactory
|
|
{
|
|
public interface IDbContextFactory
|
|
{
|
|
public DbContext ConnWriteOrRead(WriteAndReadEnum writeAndRead);
|
|
}
|
|
}
|