亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Linq無聊練習系列1--where練習

系統(tǒng) 2552 0

linq主要有3種,linq to sql,linq to XML,Linq to Object

linq to sql。

這里沒有通過相應的類,生成相應的數(shù)據(jù)庫中的表。沒有用流行的編碼優(yōu)先。

只是為了自己的練習。

通過生成的linq?類,把數(shù)據(jù)庫中的表,存儲過程,視圖等映射出來。其中數(shù)據(jù)上下文是鏈接實體類和數(shù)據(jù)庫的橋梁,這是非常重要的。

現(xiàn)在開始Linq to?sql之旅。數(shù)據(jù)庫中的代碼如下所示:

--查詢數(shù)據(jù)庫中是否含有數(shù)據(jù)庫DB_Student,有則刪除
if exists(select 1 from sys.sysdatabases where [name]='DB_Student')
?? ?drop database DB_Student
go
--創(chuàng)建學生是數(shù)據(jù)庫
create database DB_Student
go
--查看是否存在學生表,有則刪除
use DB_Student
if exists(select 1 from sys.sysobjects where [name]='T_Student')
?? ?drop table T_Student
go
--創(chuàng)建學生表
use DB_Student
create table T_Student
(
?? ?stuNumber varchar(8) not null,
?? ?stuName varchar(20) not null,
?? ?stuAge int not null,
?? ?stuSex char(2) not null
)
go
--添加主鍵約束
use DB_Student
alter table T_Student
add constraint PK_T_Student_stuNumber primary key(stuNumber)
go

--查看是否存在教師表,有則刪除
use DB_Student
if exists(select 1 from sys.sysobjects where [name]='T_Teacher')
?? ?drop table T_Teacher
go
--創(chuàng)建教師表
use DB_Student
create table T_Teacher
(
?? ?teacherNumber varchar(6) not null,
?? ?teacherName varchar(20) not null
)
go
--為教師表創(chuàng)建主鍵約束
use DB_Student
alter table T_Teacher
add constraint PK_T_Teacher_teacherNumber primary key(teacherNumber)
go
--查看是否存在課程表,有則刪除
use DB_Student
if exists(select 1 from sys.sysobjects where [name]='T_Cource')
?? ?drop table T_Cource
go
--創(chuàng)建課程表
use DB_Student
create table T_Cource
(
?? ?courceNumber varchar(4) not null,
?? ?courceName varchar(20) not null,
?? ?teacherNumber varchar(6) not null
)
go

--為課程表添加主鍵約束和外鍵約束
use DB_Student
alter table T_Cource
?? ?add constraint PK_T_Cource_courceNumber primary key(courceNumber),
?? ??? ?constraint FK_T_Cource_T_Teacher_teacherNumber foreign key(teacherNumber) references ?? ?T_Teacher(teacherNumber)
go?? ??? ?

--查看是否存在成績表,有則刪除
use DB_Student
if exists(select 1 from sys.sysobjects where [name]='T_Score')
?? ?drop table T_Score
go

--創(chuàng)建成績表
use DB_Student
create table T_Score
(
?? ?stuNumber varchar(8) not null,
?? ?courceNumber varchar(4) not null,
?? ?score float
)
go

--為成績表添加主鍵約束和外鍵約束
use DB_Student
alter table T_Score
?? ?add constraint PK_T_Score_stuNumber_courceNumber primary key(stuNumber,courceNumber),
?? ??? ?constraint FK_T_Score_T_Student_stuNumber foreign key(stuNumber) references T_Student(stuNumber),
?? ??? ?constraint FK_T_Score_T_Cource_courceNumber foreign key(courceNumber) references T_Cource(courceNumber)
go?? ?

--為學生表插入數(shù)據(jù)
insert into T_Student
?? ?select '2091727','李陽','18','男' union
?? ?select '2091728','李芳','19','女' union
?? ?select '2091729','李丹','18','男' union
?? ?select '2091721','黃陽','17','女' union
?? ?select '2091722','黃渤','18','男' union
?? ?select '2091723','黃波','20','男' union
?? ?select '2091724','何潔','19','女' union
?? ?select '2091725','何丹','17','男' union
?? ?select '2091726','何宇','19','女'
go

--為教師表插入數(shù)據(jù)
insert into T_Teacher
?? ?select '01','李剛' union
?? ?select '02','李雙江' union
?? ?select '03','鄧楠'
go
--為課程表插入數(shù)據(jù)
insert into T_Cource
?? ?select '001','微機原理','01' union
?? ?select '002','西方音樂歷史','02' union
?? ?select '003','會計學','03'
go
--為成績表插入數(shù)據(jù)?? ?
insert into T_Score
?? ?select '2091721','001','92' union
?? ?select '2091721','002','59' union
?? ?select '2091721','003','81' union
?? ?select '2091722','001','58' union
?? ?select '2091722','002','66' union
?? ?select '2091722','003','83' union
?? ?select '2091723','001','82' union
?? ?select '2091723','002','64' union
?? ?select '2091723','003','71' union
?? ?select '2091724','001','77' union
?? ?select '2091724','002','53' union
?? ?select '2091724','003','56' union
?? ?select '2091725','001','55' union
?? ?select '2091725','002','57' union
?? ?select '2091725','003','71' union
?? ?select '2091726','001','90' union
?? ?select '2091726','002','88' union
?? ?select '2091726','003','82' union
?? ?select '2091727','001','57' union
?? ?select '2091727','002','83' union
?? ?select '2091727','003','59' union
?? ?select '2091728','001','54' union
?? ?select '2091728','002','93' union
?? ?select '2091728','003','48' union
?? ?select '2091729','001','61' union
?? ?select '2091729','002','58' union
?? ?select '2091729','003','93'
go
?? ?
?? ?
select *
from T_Cource
select *
from T_Score
select *
from T_Student
select *
from T_Teacher

?

通過數(shù)據(jù)庫生成數(shù)據(jù)上下文開始在VS里編碼:

public partial class Practice1 : System.Web.UI.Page
??? {
??????? DB_StudentDataContext ctx = new DB_StudentDataContext();
??????? protected void Page_Load(object sender, EventArgs e)
??????? {
??????????? dataBind();
??????? }

??????? void dataBind()
??????? {
??????????? //獲取數(shù)據(jù)庫中的T_Student表數(shù)據(jù)
??????????? var list = ctx.T_Student.ToList();
??????????? GridView1.DataSource = list;
??????????? GridView1.DataBind();
??????? }
??? }

這就是后臺代碼,前臺顯示如下:

Linq無聊練習系列1--where練習

看只需要var list = ctx.T_Student.ToList();這樣的一句代碼,就能夠綁定數(shù)據(jù),和以前ADO.NET讀取數(shù)據(jù)填充到dataset數(shù)據(jù)集相比省了很多代碼,看是不是很方便。

開始where 練習

? /**************where 練習*******************/
??????????? //獲取數(shù)據(jù)庫中的T_Student表數(shù)據(jù)
??????????? var list = ctx.T_Student.Where(s => s.stuName == "黃陽");
??????????? //或者
??????????? var list1 = from s in ctx.T_Student
??????????????????????? where s.stuName == "黃陽"
??????????????????????? select s;
??????????? //查詢名字為"黃陽"且性別為女的同學
??????????? var list3 = ctx.T_Student.Where(s => (s.stuName == "黃陽")&&(s.stuSex=="女"));
??????????? var list4 = from s in ctx.T_Student
??????????????????????? where s.stuName == "黃陽"
??????????????????????????????? && s.stuSex == "女"
??????????????????????? select s;

??????????? var list5 = ctx.T_Student.Where(s => s.stuName == "黃陽").Where(t => t.stuSex == "女");
??????????????? //上邊三個都是一樣的結果

????   //查詢表中的第一條記錄
??????????? var list6 = ctx.T_Student.First();
??????????? //查詢名字為“黃陽”的第一條記錄
??????????? var list7 = ctx.T_Student.First(s=>s.stuName=="黃陽");

Linq無聊練習系列1--where練習


更多文章、技術交流、商務合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 亚洲成在人网站天堂一区二区 | 色婷婷精品大视频在线蜜桃视频 | 国产精品无码久久综合网 | 亚洲欧美色综合自拍 | 美女网站色视频 | 亚洲综合五月天 | 4虎影院在线观看 | 免费国产成人综合 | 亚洲热热久久九九精品 | 久久国产大片 | 亚洲一级免费毛片 | 99久久久国产精品免费播放器 | 114一级毛片免费 | 欧美国产永久免费看片 | 成人久久久精品乱码一区二区三区 | 在线观看一级毛片 | 成人影院高清在线观看免费网站 | 午夜剧| 第一福利影院 | 狼狼色丁香久久女婷婷综合 | 国产久草视频 | 久久精品国产99国产 | 精品国产区一区二区三区在线观看 | 色偷偷要色偷偷网站视频在线 | 精品999久久久久久中文字幕 | 亚洲欧美日韩国产 | se94se欧美 | 天天躁日日躁狠狠躁中文字幕 | 人人爱天天做夜夜爽毛片 | 97久久综合精品久久久综合 | 国产做爰免费视频观看 | 欧美日韩精品国产一区二区 | 一级毛片私人影院 | 91久久综合九色综合欧美亚洲 | 欧美日韩一区二区三区久久 | 国产永久精品 | 色久激情| 91最新入口 | 免费一看一级毛片人 | 亚洲美女视频在线观看 | 综合欧美视频一区二区三区 |