問題は - 新しいアプリケーション、顧客が望んでいる Linq、.NET 4.0、「カテゴリ」と「タイプ」である多くのデータ テーブル - 通常は ID と名前 (または説明) の 2 つのフィールドである単純なデータ テーブル
これらのデータ テーブルのそれぞれを編集するための Web フォームを生成する代わりに、編集するデータ テーブルを選択するだけで、1 つの Web ページだけですべてを編集できると便利です。(ところで、「パターン ジャンキー」はどこにありますか。これはパターンではありませんか? このパターンの .NET コード テンプレートはどこにありますか?)
Northwinds データベースで遊んでいます。DropDownConfiguration というテーブルを追加しました。
USE [Northwind]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[DropDownConfiguration](
[DropDownConfigurationID] [bigint] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
[TableName] [nvarchar](50) NOT NULL,
[PrimaryKeyName] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_DropDownConfiguration] PRIMARY KEY CLUSTERED
(
[DropDownConfigurationID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
次に、このデータ テーブルに次のデータを入力しました。
DropDownConfigurationID Name TableName PrimaryKeyName
1 Categories Categories CategoryID
2 Regions Regions RegionID
asp.net Web ページは次のようになります。
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="EditMultiTable.aspx.vb"
Inherits="EditMultiTable" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:LinqDataSource ID="LinqDataSourceMultiTable" runat="server" ContextTypeName="DataClassesDataContext"
EnableInsert="True" EnableUpdate="True" EntityTypeName="" TableName="Categories">
</asp:LinqDataSource>
<asp:DropDownList ID="ddlDropDownConfigurations" runat="server" AutoPostBack="True">
</asp:DropDownList>
<asp:GridView ID="GridViewMultiTable" runat="server" DataKeyNames="CategoryID" DataSourceID="LinqDataSourceMultiTable">
<Columns>
<asp:CommandField ShowEditButton="True" />
</Columns>
</asp:GridView>
</div>
</form>
</body>
</html>
コードビハインドは次のようになります。
Option Explicit On
Option Strict On
Partial Class EditMultiTable
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim myDropDownConfigurationList As List(Of DropDownConfiguration)
If Not Page.IsPostBack Then
' Tell the drop down what data tables we want to be able to edit
myDropDownConfigurationList = GetDropDownConfigurations()
ddlDropDownConfigurations.DataSource = myDropDownConfigurationList
ddlDropDownConfigurations.DataTextField = "Name"
ddlDropDownConfigurations.DataValueField = "DropDownConfigurationID"
ddlDropDownConfigurations.DataBind()
End If
End Sub
Protected Sub ddlDropDownConfigurations_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ddlDropDownConfigurations.SelectedIndexChanged
Dim myDropDownConfiguration As DropDownConfiguration
Dim myDropDownConfigurationList As List(Of DropDownConfiguration)
If ddlDropDownConfigurations.SelectedIndex > -1 Then
' clear out the old data bindings between the LinqDataSource and the GridView
GridViewMultiTable.DataSourceID = Nothing
GridViewMultiTable.DataSource = Nothing
GridViewMultiTable.DataKeyNames = Nothing
GridViewMultiTable.DataMember = Nothing
GridViewMultiTable.AutoGenerateColumns = False
GridViewMultiTable.AutoGenerateEditButton = False
GridViewMultiTable.DataBind()
GridViewMultiTable.Columns.Clear()
' Set up the LinqDataSource for the new table
myDropDownConfigurationList = GetDropDownConfigurations()
myDropDownConfiguration = (From ddc In myDropDownConfigurationList Where ddc.DropDownConfigurationID = Long.Parse(ddlDropDownConfigurations.SelectedValue) Select ddc).FirstOrDefault()
LinqDataSourceMultiTable.TableName = myDropDownConfiguration.TableName
LinqDataSourceMultiTable.EntityTypeName = String.Empty
LinqDataSourceMultiTable.EnableInsert = True
LinqDataSourceMultiTable.EnableUpdate = True
LinqDataSourceMultiTable.DataBind()
' bind the GridView to the LinqDataSource with the new data table
GridViewMultiTable.DataSourceID = "LinqDataSourceMultiTable"
GridViewMultiTable.DataKeyNames = New String() {myDropDownConfiguration.PrimaryKeyName}
GridViewMultiTable.AutoGenerateColumns = True
GridViewMultiTable.AutoGenerateEditButton = True
GridViewMultiTable.DataBind()
End If
End Sub
' Get my data table that lists the data tables that I want to configure
Function GetDropDownConfigurations() As List(Of DropDownConfiguration)
Dim myDropDownConfigurationList As List(Of DropDownConfiguration)
Using myDataClassesDataContext As New DataClassesDataContext
myDropDownConfigurationList = (From ddc In myDataClassesDataContext.DropDownConfigurations Select ddc).ToList()
End Using
Return myDropDownConfigurationList
End Function
End Class
私の問題は、LinqDataSource または GridView がクリアされていないことです。あるデータテーブルの半分と別のデータテーブルの半分を使用するようなものです。これが、私のコードビハインドで、考えられるあらゆる方法で LinqDataSource と GridView をクリアしようとした理由です。プログラムを実行すると、ドロップダウン リスト ボックスで [地域] を選択し、[地域] の最初の行を編集しようとすると、次のエラーが発生しました。
DataBinding: 'Category' には、'RegionID' という名前のプロパティが含まれていません。説明: 現在の Web 要求の実行中に未処理の例外が発生しました。エラーの詳細とコード内のどこでエラーが発生したかについては、スタック トレースを確認してください。
例外の詳細: System.Web.HttpException: DataBinding: 'Category' には 'RegionID' という名前のプロパティが含まれていません。