using Microsoft.EntityFrameworkCore; using OL.FrameCore.Domain.Entity; using System; using System.Collections.Generic; using System.Text; namespace OL.FrameCore.Repository.EF { public class ReadOnlyDataContext : DataContext { public ReadOnlyDataContext(DbContextOptions options) : base(options) { }