介紹
以Northwind為示例數據庫,DLINQ(LINQ to SQL)之完全面向對象的添加操作、查詢操作、更新操作和刪除操作
示例
Sample.ASPx

<%
@ Page Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile=
"Sample.ASPx.cs"
Inherits="LINQ_DLINQ_Sample" Title="面向對象的添加、查詢、更新和刪除" %>

<ASP:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</ASP:Content>
<ASP:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<p>
分類名稱:<ASP:TextBox ID="txtCategoryName" runat="server"></ASP:TextBox>
分類描述:<ASP:TextBox ID="txtDescription" runat="server"></ASP:TextBox>
<ASP:Button ID="btnAdd" runat="server" Text="添加" OnClick="btnAdd_Click" />
</p>
<ASP:GridView ID="gvCategory" runat="server" DataKeyNames="CategoryID"
OnSelectedIndexChanged="gvCategory_SelectedIndexChanged" OnRowDeleting="gvCategory_RowDeleting" OnRowCancelingEdit="gvCategory_RowCancelingEdit"
OnRowEditing="gvCategory_RowEditing" OnRowUpdating="gvCategory_RowUpdating">
<Columns>
<ASP:CommandField ShowSelectButton="True" ShowEditButton="True"
ShowDeleteButton="True">
</ASP:CommandField>
</Columns>
</ASP:GridView>
<br />
<ASP:DetailsView ID="dvProduct" runat="server" DataKeyNames="ProductID">
</ASP:DetailsView>
</ASP:Content>
it知識庫:LINQ to SQL之面向對象的添加、查詢、更新和刪除,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。