我有一个名为Employee的实体,它有一个名为Groups的导航属性。 我有一个名为Group的实体,它与Employee相关,并具有Name和Description
字段我有一个EntityDataSource来过滤在GridView1中选择的Employee,它包含Include Groups,其定义如下:
<asp:EntityDataSource ID="GroupsByEmployeeSource" runat="server" ConnectionString="name=SafetyContext" DefaultContainerName="SafetyContext" EnableDelete="True" EnableFlattening="False" EnableInsert="True" EnableUpdate="True" EntitySetName="Employees" Include="Groups" Where="it.[EID] == @EmpID">
<WhereParameters>
<asp:ControlParameter Name="EmpID" Type="Int32" ControlID="GridView1" PropertyName="SelectedDataKey.Value" />
</WhereParameters>
</asp:EntityDataSource>
GridView3用于显示Employee所属的组。我把它设置成这样:
<asp:GridView runat="server" ID="GridView3" DataSourceID="GroupsByEmployeeSource" AutoGenerateColumns="False">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="GroupsByEmployee" runat="server" Text='<%#Eval("Groups.Name") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
每次我在GridView1中选择一名员工时,都会抛出以下异常:
System.Web.HttpException: DataBinding: 'System.Collections.Generic.HashSet`1[[SafetyTrackingConceptApplication.DAL.Group, SafetyTrackingConceptApplication, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' does not contain a property with the name 'Name'.
我必须遗漏一些东西,但实体组肯定有一个名为Name的属性。有谁知道这里有什么问题?
答案 0 :(得分:0)
有/同样的问题。由于fk(外键)关系,关系返回集合,因为Emp可以在多个组中,这将返回AMasoud评论中解释的集合。所以你可以让Groups.Count返回EmpID显示组表的次数,但是你不能确定一个名称b / c它将返回集合。
如果FK是一对一,或多对一(不是一对多),您将能够提取名称。