部分方法实体框架

时间:2015-12-02 17:55:41

标签: entity-framework entity-framework-4 entity-framework-6 entity-framework-5 entity-framework-4.1

我正在尝试首先使用实体​​框架代码实现部分方法

using System;
using System.Collections.Generic;

namespace CodeFirstPortalEntity.Models
{
    public partial class ActionItem
{
    public long Id { get; set; }
    public string Title { get; set; }
    public string Description { get; set; }
    public bool Completed { get; set; }

}
}

我想做的就是在"完成"时执行一些代码。字段已更改

我一直在努力做这样的事情

 partial class ActionItem
{
    partial void OnCompletedChanging(bool value)
    {
        if(value==true)
           {....Do Stuff.....}

    }
}

无论我做什么,我都会继续

错误1未找到实现部分方法声明的定义声明' CodeFirstPortalEntity.Models.Opportunity.OnCompletedChanging(bool)'

我一直在阅读,并且尚未找到解决方案。请帮忙。

0 个答案:

没有答案