溫馨提示×

溫馨提示×

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

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

LINQ基本操作的方法有哪些

發(fā)布時間:2021-12-02 09:42:02 來源:億速云 閱讀:323 作者:iii 欄目:編程語言

這篇文章主要講解了“LINQ基本操作的方法有哪些”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“LINQ基本操作的方法有哪些”吧!

LINQ基本操作學(xué)習(xí)1.

我首先創(chuàng)建一個表,名字為:userinfo的表。

LINQ基本操作的方法有哪些

LINQ基本操作學(xué)習(xí)2.

將表拉到vs 2008的linq file上面,然后保存一下,你會看到如下圖,ms利用拖放式方法,生成表對應(yīng)的類,這個比nhibername方便多了。只要你一保存它就會自動自成一個class。

LINQ基本操作的方法有哪些 

LINQ基本操作學(xué)習(xí)3.編寫代碼:

LINQ基本操作的方法有哪些

LINQ基本操作代碼如下:

public partial class TestLinQ_Default : System.Web.UI.Page  ...{  GetUserInfoDataContext cxt =    new GetUserInfoDataContext(   System.Configuration.ConfigurationManager.   ConnectionStrings["TestConnectionString"].ToString());  protected void Page_Load(object sender, EventArgs e)  ...{   }  //LINQ基本操作插入操作  protected void Button1_Click(object sender, EventArgs e)  en_Text'').style.display=''inline'';" align="top" alt=""    src="http://images.csdn.net/syntaxhighlighting/   OutliningIndicators/ContractedSubBlock.gif" />...{   UserInfo userinfo = new UserInfo();  userinfo.username = TextBox1.Text;  userinfo.password = TextBox2.Text;   cxt.UserInfos.InsertOnSubmit(userinfo);  cxt.SubmitChanges();      //  cxt.InsertUserInfo(TextBox1.Text, TextBox2.Text);      }  //LINQ基本操作之刪除操作  protected void Button2_Click(object sender, EventArgs e)  ...{  UserInfo userinfo =   cxt.UserInfos.Single(b => b.id == int.Parse(txt_id.Text));  cxt.UserInfos.DeleteOnSubmit(userinfo);  cxt.SubmitChanges();  }  //LINQ基本操作之更新操作protected void Button3_Click(object sender, EventArgs e)   splay=''inline'';   document.getElementById(''_947_1210_Closed_Text'').  style.display=''inline'';" align="top" alt="" src=   "http://images.csdn.net/syntaxhighlighting/   OutliningIndicators/ExpandedSubBlockStart.gif" />...{  UserInfo userinfo =   cxt.UserInfos.Single(b => b.id ==   int.Parse(txt_update_id.Text));  userinfo.username = txt_update_username.Text;  userinfo.password = txt_update_password.Text;      // cxt.UserInfos.  cxt.SubmitChanges();  }  }

感謝各位的閱讀,以上就是“LINQ基本操作的方法有哪些”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對LINQ基本操作的方法有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI