有没有办法手动引发 EntityObject 的 PropertyChanged 事件?

发布于 2024-08-02 04:48:25 字数 70 浏览 5 评论 0原文

您好,我正在尝试引发 EntityObject 的 PropertyChanged 事件,我找不到方法来做到这一点,这可能吗?

Hi I am trying to raise the PropertyChanged event of an EntityObject, I don't find a way to do it, is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忆梦 2024-08-09 04:48:25
OnPropertyChanged("PropertyName")
OnPropertyChanged("PropertyName")
披肩女神 2024-08-09 04:48:25

您应该能够使用属性来装饰属性,然后调用 ReportPropertyChanging 和 ReportPropertyChanged 方法,如下所示:

[EdmScalarPropertyAttribute(IsNullable = false)]
public byte Status
{
    get 
    {
        return _status;
    }
    set
    {
        if (_status != value)
        {
            ReportPropertyChanging("Status");
            _status = value;
            ReportPropertyChanged("Status");
        }
    }
}

You should be able to decorate the property with an attribute and then call the ReportPropertyChanging and ReportPropertyChanged method like so:

[EdmScalarPropertyAttribute(IsNullable = false)]
public byte Status
{
    get 
    {
        return _status;
    }
    set
    {
        if (_status != value)
        {
            ReportPropertyChanging("Status");
            _status = value;
            ReportPropertyChanged("Status");
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文