public void EdytujTresc(string userId, Edytor edytor) { if (_db.Edytor.Where(x => x.Id == userId).Any()) { _db.Entry(edytor).State = System.Data.Entity.EntityState.Modified; } else { _db.Edytor.Add(edytor); } SaveChanges(); }
public Edytor EdytujTresc(string userId) { Edytor edytor = _db.Edytor.Where(x => x.Id == userId).FirstOrDefault(); return(edytor); }