using SqlSugar; using SqlSugar.IOC; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VideoAnalysisCore.Model; namespace VideoAnalysisCore.Common { public class Repository : SimpleClient where T : class, new() { public Repository() { base.Context = DbScoped.SugarScope; } } }