public void Delete(Guid id) { var poi = _context.Set <Poi>().FirstOrDefault(p => p.Id == id); if (poi != null) { _context.Pois.Remove(poi); _context.SaveChanges(); } }
public PoiRepository(PoiContext context) { _context = context; dbSet = context.Set <Poi>(); }
public void Create <T>(T entity) where T : BaseEntity { _poiContext.Set <T>().Add(entity); }
public void Update(Poi entity) { _poiContext.Set <Poi>().Update(entity); _poiContext.SaveChanges(); }