Example #1
0
        public void xoa(string id)
        {
            nhomdoituong dt = (from d in db.nhomdoituongs select d).Single(t => t.id == id);

            db.nhomdoituongs.DeleteOnSubmit(dt);
            db.SubmitChanges();
        }
Example #2
0
        public void sua(string id, string ten)
        {
            nhomdoituong dt = (from d in db.nhomdoituongs select d).Single(t => t.id == id);

            dt.ten = ten;

            db.SubmitChanges();
        }
Example #3
0
        public void moi(string id, string ten)
        {
            nhomdoituong dt = new nhomdoituong();

            dt.id  = id;
            dt.ten = ten;

            db.nhomdoituongs.InsertOnSubmit(dt);
            db.SubmitChanges();
        }
Example #4
0
        public void moi(string id, string ten)
        {
            var dt = db.nhomdoituongs.FirstOrDefault(t => t.id == id);

            if (dt == null)
            {
                dt     = new nhomdoituong();
                dt.id  = id;
                dt.ten = ten;

                db.nhomdoituongs.InsertOnSubmit(dt);
                db.SubmitChanges();
            }
            else
            {
                dt.ten = ten;
                db.SubmitChanges();
            }
        }