過去数日間、これに対する答えを見つけようとして、何百もの Google の検索結果ページを調べました。
サブテーブルへの外部キーであるフィールドの 1 つで、EntityDataSource を使用して、スタンドアロンの動的データ ページを使用してテーブルを表示します。サブテーブルの値を表示したい。私は、NorthWinds データベースを使用して単純化したケースで遊んでいます (以下のコードを参照)。DynamicControl に DataField="Supplier" を割り当てると、代わりにサブテーブル/クラス名 ("DAL.Supplier") が表示されます。DataField="Supplier.CompanyName" を割り当てようとすると、「テーブル 'Product' には 'Supplier.CompanyName' という名前の列がありません」というエラーが表示されます。動的データの編集機能を活用したいので、<%# Eval("Supplier.CompanyName") %> でのテンプレート フィールドの使用はアウトです。
これは、スタンドアロンの動的データ ページでは不可能なのでしょうか? 完全にスキャフォールディングされたシステム内で問題なく動作することは明らかです。それとも、(うまくいけば)何かが足りないのですか?ありがとうございました。
テスト.aspx
<%@ Page Title="" Language="VB" MasterPageFile="~/Master/Site.master" AutoEventWireup="false" CodeFile="Test.aspx.vb" Inherits="Test" %>
<asp:Content ID="Content3" ContentPlaceHolderID="BodyContent" Runat="Server">
<asp:ListView ID="ListView1" runat="server" DataSourceID="theDataSource" DataKeyNames="ProductID">
<ItemTemplate>
<tr>
<td>
<asp:DynamicControl runat="server" DataField="ProductID" Mode="Edit" />
</td>
<td>
<asp:DynamicControl runat="server" DataField="ProductName" Mode="Edit" />
</td>
<td>
<asp:DynamicControl runat="server" DataField="Supplier" Mode="Edit" />
</td>
<td>
<asp:DynamicControl runat="server" DataField="UnitPrice" Mode="Edit" />
</td>
<td>
<asp:DynamicControl runat="server" DataField="Discontinued" Mode="Edit" />
</td>
</tr>
</ItemTemplate>
<LayoutTemplate>
<table runat="server">
<tr runat="server">
<td runat="server">
<table id="itemPlaceholderContainer" runat="server" border="0">
<tr runat="server">
<th runat="server">
ProductID
</th>
<th runat="server">
ProductName
</th>
<th runat="server">
Supplier
</th>
<th runat="server">
UnitPrice
</th>
<th runat="server">
Discontinued
</th>
</tr>
<tr id="itemPlaceholder" runat="server">
</tr>
</table>
</td>
</tr>
<tr runat="server">
<td runat="server">
</td>
</tr>
</table>
</LayoutTemplate>
</asp:ListView>
<asp:EntityDataSource ID="theDataSource" runat="server"
ConnectionString="name=NorthwindEntities"
DefaultContainerName="NorthwindEntities" EnableDelete="True"
EnableFlattening="False" EnableInsert="True" EnableUpdate="True"
Include="Supplier"
EntitySetName="Products">
</asp:EntityDataSource>
</asp:Content>
Test.aspx.vb
Imports System.Web.DynamicData
Imports DAL
Partial Class Test
Inherits System.Web.UI.Page
Protected table As MetaTable
Protected Sub Page_Init(sender As Object, e As System.EventArgs) Handles Me.Init
Listview1.EnableDynamicData(GetType(Product))
table = theDataSource.GetTable()
Title = table.DisplayName
End Sub
End Class