【问题标题】:'EditItem' is not allowed for this view. WPF .NET 4 / EF 4.1 - Master - Detail此视图不允许使用“EditItem”。 WPF .NET 4 / EF 4.1 - 主 - 详细信息
【发布时间】:2011-06-28 14:56:11
【问题描述】:

好的,为了尝试找到这个问题的答案,我使用 AdventureWorks 数据库制作了一个更简单的项目。

我从 Vendor 和 PurchaseOrderHeader 表中创建了一个模型 - 将它们作为数据源添加到项目中,并具有以下代码:

XAML:

<Window x:Class="EFDbContextTest.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="569" Width="1130" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:my="clr-namespace:EFDbContextTest;assembly=EFDbContextTest" Loaded="Window_Loaded">
<Window.Resources>
    <CollectionViewSource x:Key="vendorViewSource" d:DesignSource="{d:DesignInstance my:Vendor, CreateList=True}" />
    <CollectionViewSource x:Key="vendorPurchaseOrderHeadersViewSource" Source="{Binding Path=PurchaseOrderHeaders, Source={StaticResource vendorViewSource}}" />
</Window.Resources>
<Grid DataContext="{StaticResource vendorViewSource}">
    <DataGrid AutoGenerateColumns="False" EnableRowVirtualization="True" Height="200" HorizontalAlignment="Left" ItemsSource="{Binding}" Margin="12,12,0,0" 
              Name="vendorDataGrid" RowDetailsVisibilityMode="VisibleWhenSelected" VerticalAlignment="Top" Width="1084" IsSynchronizedWithCurrentItem="True" 
              SelectedValuePath="VendorID">
        <DataGrid.Columns>
            <DataGridTextColumn x:Name="accountNumberColumn" Binding="{Binding Path=AccountNumber}" Header="Account Number" Width="SizeToHeader" />
            <DataGridCheckBoxColumn x:Name="activeFlagColumn" Binding="{Binding Path=ActiveFlag}" Header="Active Flag" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="creditRatingColumn" Binding="{Binding Path=CreditRating}" Header="Credit Rating" Width="SizeToHeader" />
            <DataGridTemplateColumn x:Name="modifiedDateColumn" Header="Modified Date" Width="SizeToHeader">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <DatePicker SelectedDate="{Binding Path=ModifiedDate, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTextColumn x:Name="nameColumn" Binding="{Binding Path=Name}" Header="Name" Width="SizeToHeader" />
            <DataGridCheckBoxColumn x:Name="preferredVendorStatusColumn" Binding="{Binding Path=PreferredVendorStatus}" Header="Preferred Vendor Status" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="purchasingWebServiceURLColumn" Binding="{Binding Path=PurchasingWebServiceURL}" Header="Purchasing Web Service URL" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="vendorIDColumn" Binding="{Binding Path=VendorID}" Header="Vendor ID" Width="SizeToHeader" />
        </DataGrid.Columns>
    </DataGrid>
    <DataGrid AutoGenerateColumns="False" EnableRowVirtualization="True" Height="200" HorizontalAlignment="Left" 
              ItemsSource="{Binding Source={StaticResource vendorPurchaseOrderHeadersViewSource}}" Margin="12,218,0,0" Name="purchaseOrderHeadersDataGrid" 
              RowDetailsVisibilityMode="VisibleWhenSelected" VerticalAlignment="Top" Width="1084" IsSynchronizedWithCurrentItem="True">
        <DataGrid.Columns>
            <DataGridTextColumn x:Name="employeeIDColumn" Binding="{Binding Path=EmployeeID}" Header="Employee ID" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="freightColumn" Binding="{Binding Path=Freight}" Header="Freight" Width="SizeToHeader" />
            <DataGridTemplateColumn x:Name="modifiedDateColumn1" Header="Modified Date" Width="SizeToHeader">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <DatePicker SelectedDate="{Binding Path=ModifiedDate, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn x:Name="orderDateColumn" Header="Order Date" Width="SizeToHeader">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <DatePicker SelectedDate="{Binding Path=OrderDate, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTextColumn x:Name="purchaseOrderIDColumn" Binding="{Binding Path=PurchaseOrderID}" Header="Purchase Order ID" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="revisionNumberColumn" Binding="{Binding Path=RevisionNumber}" Header="Revision Number" Width="SizeToHeader" />
            <DataGridTemplateColumn x:Name="shipDateColumn" Header="Ship Date" Width="SizeToHeader">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <DatePicker SelectedDate="{Binding Path=ShipDate, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTextColumn x:Name="shipMethodIDColumn" Binding="{Binding Path=ShipMethodID}" Header="Ship Method ID" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="statusColumn" Binding="{Binding Path=Status}" Header="Status" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="subTotalColumn" Binding="{Binding Path=SubTotal}" Header="Sub Total" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="taxAmtColumn" Binding="{Binding Path=TaxAmt}" Header="Tax Amt" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="totalDueColumn" Binding="{Binding Path=TotalDue}" Header="Total Due" Width="SizeToHeader" />
            <DataGridTextColumn x:Name="vendorIDColumn1" Binding="{Binding Path=VendorID}" Header="Vendor ID" Width="SizeToHeader" />
        </DataGrid.Columns>
    </DataGrid>
</Grid>

C#:

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;


namespace EFDbContextTest
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        Entities _context = new Entities();

        public MainWindow()
        {
            InitializeComponent();
        }

        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            System.Windows.Data.CollectionViewSource vendorViewSource =
                ((System.Windows.Data.CollectionViewSource)(this.FindResource("vendorViewSource")));
        _context.Vendors.Include("PurchaseOrderHeaders").Load();
        vendorViewSource.Source = _context.Vendors.Local;

        }
    }
}

因此,两个网格都在窗口上,您可以像没有明天一样编辑/删除/更新主网格 - 一旦您尝试单击详细网格上的任何单元格,您就会收到错误“EditItem”不是允许此视图。

我必须在这里遗漏一些东西,因为在我使用 EF 4.1 拥有主-详细信息视图的几种情况下都会发生这种情况 - 帮助!

【问题讨论】:

    标签: wpf entity-framework data-binding


    【解决方案1】:

    如果您的Vendor 类中的PurchaseOrderHeaders 集合属性是ICollection&lt;T&gt; 类型,那么这可能是您的问题的根源。要获得允许编辑源集合的数据网格,必须是IList&lt;T&gt; 类型或实现IList&lt;T&gt; 的任何类型,如List&lt;T&gt;ObservableCollection&lt;T&gt;。您可能需要相应地更改模型类中 PurchaseOrderHeaders 的集合类型。

    更详细的解释在这里:Getting Readonly Databind using EF POCO Objects

    编辑

    根据@Allon Guralnek 下面的评论,有必要实现 non-generic IList 接口以获得可编辑的 DataGrid。 ObservableCollection&lt;T&gt;List&lt;T&gt; 就是这种情况。仅实现 generic IList&lt;T&gt; 而不是 non-generic IList 的其他实现不会使 DataGrid 可编辑。

    【讨论】:

    • IList&lt;T&gt; 不会。诀窍是让您的集合实现非泛型 IList 接口。
    • @Allon:我明白了。我猜我实际上正在使用ObservableCollection&lt;T&gt;,它实现了两者。感谢您的澄清,我不会认为非通用 IList 是重要的部分。
    猜你喜欢
    • 2017-04-26
    • 2013-11-30
    • 2012-01-30
    • 2013-10-20
    • 2013-09-05
    • 2010-12-06
    • 2011-03-01
    • 2018-03-02
    相关资源
    最近更新 更多