public void Adiciona(ComunicadoAluno ca) { using (var contexto = new SalaContext()) { contexto.ComunicadoAluno.Add(ca); contexto.SaveChanges(); } }
public void Atualiza(ComunicadoAluno ComunicadoAluno) { using (var contexto = new SalaContext()) { contexto.Entry(ComunicadoAluno).State = EntityState.Modified; contexto.SaveChanges(); } }
public static void RemoveSala(int idSala) { using (var contexto = new SalaContext()) { contexto.RemoveRange(from a in contexto.ComunicadoAluno join c in contexto.Comunicado on a.CodComunicado equals c.Id where c.CodSala == idSala select a ); contexto.SaveChanges(); } }