91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linq級聯操作怎么實現

發布時間:2021-12-02 09:23:19 來源:億速云 閱讀:127 作者:iii 欄目:編程語言

這篇文章主要介紹“linq級聯操作怎么實現”,在日常操作中,相信很多人在linq級聯操作怎么實現問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”linq級聯操作怎么實現”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

1.我首先新建了兩張表一個是category,一個是product.

linq級聯操作怎么實現
category表

linq級聯操作怎么實現
product表

2.然后添加linq級聯:

ALTER TABLE product ADD  CONSTRAINT [FK_ product  _Key]  FOREIGN KEY       (       catid    )REFERENCES  Category    (      catid    )       GO

3.代碼:添加的linq級聯代碼是:

Category_Product_ContextDataContext cpcontext =              new Category_Product_ContextDataContext(System.Configuration.ConfigurationManager.ConnectionStrings["TestConnectionString"].ToString());           // 級聯添加         Category cat=new Category()         ...{             Catid =1005,             CatName = "設計",             CatDescription = "好多設計 "              };         Product p1 = new Product()         ...{             ProductName = "平面設計",             ProductDescripton = "設計大",             Category=cat         };         Product p2 = new Product()         ...{             ProductName = "立體設計",             ProductDescripton = "新電腦",             Category = cat         };         Product p3 = new Product()         ...{             ProductName = " 室內設計",             ProductDescripton = " 室內設計林",             Category = cat         };         Product p4 = new Product()         ...{             ProductName = "產品設計",             ProductDescripton = "林",             Category = cat         };         Product p5 = new Product()         ...{             ProductName = "建筑設計",             ProductDescripton = "在",             Category = cat         };         cpcontext.Categories.InsertOnSubmit(cat);                 cpcontext.SubmitChanges();

刪除的linq級聯代碼:

刪除的原則是:先刪除從表的再刪除主表的

Category_Product_ContextDataContext cpcontext =              new Category_Product_ContextDataContext(System.Configuration.ConfigurationManager.ConnectionStrings["TestConnectionString"].ToString());          Category singlecats = cpcontext.Categories.Single(p => p.Catid == 1004);    foreach (Product p in cpcontext.Products.Where(p => p.CatId == 1004))//刪除從表          ...{              cpcontext.Products.DeleteOnSubmit(p);          }          cpcontext.Categories.DeleteOnSubmit(singlecats);//刪除主表          cpcontext.SubmitChanges();

到此,關于“linq級聯操作怎么實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

柞水县| 南和县| 广丰县| 滦平县| 武乡县| 涞水县| 陆川县| 枣庄市| 康保县| 茂名市| 大同市| 乐业县| 迁安市| 雅安市| 崇明县| 大石桥市| 韶山市| 永胜县| 宝应县| 江口县| 阿拉善左旗| 天长市| 偃师市| 龙州县| 宜黄县| 龙口市| 铁力市| 安平县| 酒泉市| 枣阳市| 寻乌县| 诏安县| 台安县| 石首市| 临猗县| 冕宁县| 姜堰市| 浦县| 根河市| 资源县| 花莲市|