public void Remove(TKey Id) { using (var uow = _db.GetTransaction()) { _db.Delete <T>("WHERE Id = @0", Id); uow.Complete(); } }