public IQueryable <Kategori_2> getButunKategori2ByKat1(Kategori_1 kategori_1) { var res = from kt in db.Kategori_2 where kt.UstKategori == kategori_1.KategoriNo select kt; return(res); }
public bool Kategori1Sil(Kategori_1 kategori_1) { bool res = false; try { db.Kategori_1.Remove(db.Kategori_1.Find(kategori_1.KategoriNo)); db.SaveChanges(); res = true; } catch (Exception) { res = false; } return(res); }
public bool Kategori1Ekle(Kategori_1 kategori_1) { bool res = false; try { db.Kategori_1.Add(kategori_1); db.SaveChanges(); res = true; } catch (Exception) { res = false; } return(res); }
public bool Kategori1Guncelle(Kategori_1 kategori_1) { bool res = false; try { db.Entry(kategori_1).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); res = true; } catch (Exception) { res = false; } return(res); }
public Kategori_1 getKategori1ById(Kategori_1 kategori_1) { Kategori_1 res = db.Kategori_1.Find(kategori_1.KategoriNo); return(res); }