gpt4 book ai didi

c# - 在 Entity Framework 和 WPF UI 中显示计算属性

转载 作者:行者123 更新时间:2023-11-30 22:42:26 24 4
gpt4 key购买 nike

我的 EF 数据模型中有一个下载实体。它的两个属性 Size 和 BytesDownloaded 计算得出我在分部类中创建的 Progress 属性:

partial class Download
{
public int Progress
{
get
{
if (!Size.HasValue || Size.Value == 0) return 0;
return Convert.ToInt32(Math.Floor(100.0 * ((double)BytesDownloaded / (double)Size)));
}
}
}

在我的 WPF UI 中我有:

<DataGridTemplateColumn x:Name="progressColumn" Header="Progress"  Width="*">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ProgressBar Value="{Binding Path=Progress, Mode=OneWay}" Maximum="100" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>

由于 Progress 不是实体模型 (edmx) 的一部分,我必须通知 UI 它应该更新 ProgressBar。我以为我可以这样做:

partial void OnBytesDownloadedChanging(long value)
{
ReportPropertyChanging("Progress");
}
partial void OnBytesDownloadedChanged()
{
ReportPropertyChanged("Progress");
}

这编译正常,但是当我运行应用程序并调用 OnBytesDownloadedChanging/Changed 时,我在调用 ReportPropertyChanging/Changed 时遇到此异常:

The property 'Progress' does not have a valid entity mapping on the entity object. For more information, see the Entity Framework documentation.

我明白错误消息的意思,但我不明白我可以做些什么来真正实现我的目标。

PS - 他们甚至指的是什么具体的“文档”?叹!如果他们要暗示这个错误有文档,为什么他们不直接将我链接到文档而不是告诉我 [毫无意义] 尝试找到它?

最佳答案

使用 OnPropertyChanged/Changing 而不是 ReportPropertyChanged/ChangingOn* 方法仅引发事件,而 Report* 方法还将属性标记为已修改以进行更改跟踪。

关于c# - 在 Entity Framework 和 WPF UI 中显示计算属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4423580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com