LINQ to SQL課堂筆記

2021-08-18 02:03:34 字數 765 閱讀 5146

linq to sql概述:可以為關聯式資料庫提供乙個物件模型,並在該物件模型基礎上實現對資料的查詢、新增、修改、刪除等功能,即linq to sql提供了用於將關係資料作為物件管理的執行時基礎結構。

linq to sql物件模型和sql server資料庫中的物件對映關係

linq to sql物件模型的基本元素

sql server資料庫中的物件

實體類表

屬性或字段列關聯

外來鍵關係

方法儲存過程或函式

1.實體類和資料庫表

[table(name="userinfo")]

public class userinfo

2.屬性或(字段)和資料庫表中的列

如果乙個實體類對映到資料庫中的表,那麼它的屬性或字段可以被對映到資料庫表中的列。

[table(name="userinfo")]

public class userinfo

set} public string username

set}}

3.關聯和資料庫外來鍵關係

在linq to sql中,linqdb資料庫中的外來鍵關聯通過associationattribute屬性表示.。

[table(name="userinfo")]

public class userinfo

set} ...

}

sqlplus課堂筆記

desc user tables select from user tables where table name emp update 表名 set 列名 修改後資料 where 行名 aaa create table student id number 5,2 primary key,sname...

linux課堂筆記

rw r r 第一位有 d,l 表示普通檔案,d表示目錄,l表示連線檔案 快捷方式 接下來三位為一組,分別表示u所有者,g所屬組,o其他人。r讀,w寫,x執行 代表acl許可權 數字代表引用計數 開頭的檔案代表隱藏檔案 系統檔案 ls l簡稱ll就是ls的詳細資訊 建立目錄 mkdir make d...

課堂筆記六

偵錯程式 gdb 程式除錯工具 使用 gcc g test.c o test gdb test gdb run 執行程式 gdb list 檢視 gdb quit 退出 gdb break 21 執行到21行 gdb next 單步執行 gdb print 變數名 檢視變數數 gdb continu...