public static List <DAL.Passwort> LesenFremdschluesselGleich(DAL.Kategorie suchschluessel) { using (var context = new DAL.Context()) { return((from record in context.Passwort.Include("Kategorie") where record.Kategorie.KategorieId == suchschluessel.KategorieId select record).ToList()); } }
public static void Loeschen(DAL.Kategorie kategorie) { using (var context = new DAL.Context()) { context.Kategorie.Remove(kategorie); context.SaveChanges(); } }
public static void Aktualisieren(DAL.Kategorie kategorie) { using (var context = new DAL.Context()) { context.Entry(kategorie).State = System.Data.Entity.EntityState.Modified; context.SaveChanges(); } }
public static void Loeschen(DAL.Kategorie kategorie) { using (var context = new DAL.Context()) { var itemtoRemove = context.Kategorie.FirstOrDefault(k => k.KategorieId == kategorie.KategorieId); context.Kategorie.Remove(itemtoRemove); context.SaveChanges(); } }
public static Int64 Erstellen(DAL.Kategorie kategorie) { if (kategorie.Name == null || kategorie.Name == "") { kategorie.Name = "leer"; } using (var context = new DAL.Context()) { context.Kategorie.Add(kategorie); context.SaveChanges(); return(kategorie.KategorieId); } }