我想在DataGrid(CollectioViewSource)中显示1:n关系。基于EntityFramework。
到目前为止的作品: 显示基本数据,显示DataGridComboBoxColumn,可以选择DataGridComboBoxColumn中的其他条目。
不起作用: 使用_context.SaveChanges()保存更改; (_context是DatabaseContext的一个实例)。 所以,如果我更改DataGridComboBoxColumn中的其他Typ并尝试安全,我得到: " System.InvalidOperationException:属性' TypId'是对象的关键信息的一部分,不能改变'。 (自己从德语翻译成英语..)
信息:我可以直接在数据库中更改Operation.TypId Attribut,没有错误。
XAML:
<Page x:Class="ProdPlanNET.Views.OperationPage"
<Page.Resources>
<CollectionViewSource x:Key="operationViewSource"/>
</Page.Resources>
<Grid >
<Grid.Resources>
<CollectionViewSource x:Key="source" Source="{Binding Types, Mode=OneTime}"/>
</Grid.Resources>
<DataGrid DataContext="{StaticResource operationViewSource}" AutoGenerateColumns="False" Margin="8,112,8,8" IsReadOnly="False" ItemsSource="{Binding}">
<DataGrid.Columns>
<DataGridTextColumn IsReadOnly="True" Binding="{Binding OperationId}"
Header="Operation Id" Width="SizeToHeader"/>
<DataGridTextColumn Binding="{Binding Name}"
Header="Operation Name" Width="SizeToHeader"/>
<DataGridComboBoxColumn ItemsSource="{Binding Source={StaticResource source}}"
SelectedValuePath="TypId" DisplayMemberPath="Name" SelectedValueBinding="{Binding Path=Typ.TypId}" />
</DataGrid.Columns>
我的ViewModel:
namespace ProdPlanNET.ViewModels
{
class OperationPageViewModel : BaseViewModel
{
public CollectionViewSource cvs = new CollectionViewSource();
private DatabaseContext _context = new DatabaseContext();
public ObservableCollection<Typ> Types
{
get
{
return _context.Types.Local;
}
set { }
}
System.Windows.Data.CollectionViewSource operationViewSource;
public OperationPageViewModel(object viewSource)
{
this.operationViewSource = ((System.Windows.Data.CollectionViewSource)viewSource);
_context.Types.Load();
_context.Workplaces.Load();
_context.Operations.Load();
operationViewSource.Source = _context.Operations.Local;
}
public void SaveCommand()
{
_context.SaveChanges();
}}}
答案 0 :(得分:0)
得到了我的自己。
<DataGridComboBoxColumn ItemsSource="{Binding Source={StaticResource source}}"
SelectedValueBinding="{Binding Typ, Mode=TwoWay}" DisplayMemberPath="Name" />
希望它对某人有帮助。