public void Insert(PropriedadeValor propriedadeValor) { using (var ctx = new Context.Context()) { ctx.PropriedadeValores.Add(propriedadeValor); ctx.SaveChanges(); } }
public void Update(PropriedadeValor propriedadeValor) { using (var ctx = new Context.Context()) { ctx.Entry(propriedadeValor).State = System.Data.Entity.EntityState.Modified; ctx.SaveChanges(); } }
public PropriedadeValor GetByID(int id) { PropriedadeValor val = null; using (var ctx = new Context.Context()) { val = ctx.PropriedadeValores.Where(x => x.ID == id).SingleOrDefault(); } return(val); }