public async void Add <T>(T obj) { using SkipContext _db = new SkipContext(); await _db.AddAsync(obj); await _db.SaveChangesAsync(); }