使用Entity Framework导航属性null

时间:2017-03-27 12:03:47

标签: c# entity-framework

我首先使用Entity Framework和Code。我的关系属性一直在破碎。

我有对象Element

public class Element : IElement
{
    // ... some event handlers (removed)

    [Key]
    public Guid ID { get; set; } = Guid.NewGuid();

    public string Name { get; set; }

    // navigation properties
    public virtual ElementType ElementType { get; private set; }

    public virtual NotifiableCollection<Property> Properties { get; private set; } = new NotifiableCollection<Property>();

    // Parameterless constructor for serialization
    private Element() { }

    public Element(ElementType elementType) : base()
    {
        // loop through and create Properties for each Property Type
        ElementType = elementType;
        if (ElementType?.PropertyTypes != null)
        {
            ElementType.PropertyTypes.ToList().ForEach((property) =>
            {
                Properties.Add(new Property(property));
            });
        }
    }
}

ElementType

public class ElementType : IElementType
{
    // ... some event handlers (removed)

    [Key]
    public Guid ID { get; set; } = Guid.NewGuid();

    public string Name { get; set; }

    // navigation properties
    public virtual NotifiableCollection<PropertyType> PropertyTypes { get; set; } = new NotifiableCollection<PropertyType>();

    public virtual NotifiableCollection<Element> Elements { get; set; } = new NotifiableCollection<Element>();

    public ElementType()
    {
        // ensure our Element's get updates
        PropertyTypes.CollectionChanged += (e, a) =>
        {
            //update the database to send out renewal to interested entities
            if (a.ChangeType == ChangeType.Added)
            {
                foreach (Element element in Elements)
                {
                    element.Properties.Add(new Property(a.Item));
                }
            }
        };
    }
}

我第一次创建这些对象时工作正常(因为我已经明确设置导航属性然后保存):

enter image description here

然而,当我关闭所有内容并从数据库中获取这些内容时:

enter image description here

未解析导航属性。表定义设置了foregn密钥关系:

CREATE TABLE [dbo].[Elements] (
    [ID]             UNIQUEIDENTIFIER NOT NULL,
    [Name]           NVARCHAR (MAX)   NULL,
    [ElementType_ID] UNIQUEIDENTIFIER NULL,
    CONSTRAINT [PK_dbo.Elements] PRIMARY KEY CLUSTERED ([ID] ASC),
    CONSTRAINT [FK_dbo.Elements_dbo.ElementTypes_ElementType_ID] FOREIGN KEY ([ElementType_ID]) REFERENCES [dbo].[ElementTypes] ([ID])
);


GO
CREATE NONCLUSTERED INDEX [IX_ElementType_ID]
    ON [dbo].[Elements]([ElementType_ID] ASC);

我可以看到数据都是正确的:

ID                                    Name                             ElementType_ID
ff186746-62cb-4246-9c64-f2d007b23ac0  Aircon Test 27/03/2017 12:54:03  57d93ac1-ad3b-4718-a593-80639cc24907

匹配ElementType表中的ID。

我在我的存储库中有这个集:

context.Configuration.ProxyCreationEnabled = true;
context.Configuration.LazyLoadingEnabled = true;

在我尝试解析此属性时,上下文仍处于活动状态。

一切正常,但是我已经多次使用EF这个问题,我的导航属性只是随机破坏。我不记得触摸任何与此元素相关的代码,只是运行它,现在它不起作用。有人可以帮忙吗?

编辑:这是存储库代码:

public sealed class Repository : IRepository
{
    public event ObjectMaterializedEventHandler ObjectMaterialized;

    public Repository() {
        (context as IObjectContextAdapter).ObjectContext.ObjectMaterialized += ObjectContext_ObjectMaterialized; ;
        context.Configuration.ProxyCreationEnabled = true;
        context.Configuration.LazyLoadingEnabled = true;
    }

    // I do this to wire in some events later
    private void ObjectContext_ObjectMaterialized(object sender, ObjectMaterializedEventArgs e)
    {
        ObjectMaterialized?.Invoke(this, e);
    }

    private DataContext context = new DataContext(false);

    public IEnumerable<T> GetAll<T>() where T : class
    {
        return context.Set<T>().ToList() as IEnumerable<T>;
    }

    public T GetItem<T>(Guid id) where T : class
    {
        return context.Set<T>().Find(id) as T;
    }
    ...
}

上下文将它们存储起来:

public class DataContext : DbContext
{
    ...
    public DbSet<Element> Elements { get; set; }
    public DbSet<ElementType> ElementTypes { get; set; }
}

我认为这与访问有关。我用context.Set()。查找(id)作为T访问元素,但它失败了。但是,如果我浏览ElementTypes,找到它的实体列表,那么它可以正常工作。

1 个答案:

答案 0 :(得分:3)

在评论中,在Ivan的帮助下找到答案。

问题在于拥有私有构造函数:

// Parameterless constructor for serialization
private Element() { }

proxies的一个要求是公共或受保护的构造函数:

  

要创建其中任何一个代理:必须是自定义数据类   以公共访问声明。

     
      
  • 不得密封自定义数据类(Visual中的NotInheritable)   基本)

  •   
  • 自定义数据类不能是抽象的(VisualInter中的MustInherit)   碱性)。

  •   
  • 自定义数据类必须具有公共或受保护的构造函数   没有参数。使用受保护的构造函数   如果您希望使用CreateObject方法创建一个参数   POCO实体的代理。调用CreateObject方法不会   保证代理的创建:POCO类必须遵循   本主题中描述的其他要求。

  •   
  • 该类无法实现IEntityWithChangeTracker或   IEntityWithRelationships接口因为代理类   实现这些接口。

  •   
  • 必须将ProxyCreationEnabled选项设置为true。

  •   
     

对于延迟加载代理:必须将每个导航属性声明为   public,virtual(在Visual Basic中可覆盖),而不是密封   (在Visual Basic中为NotOverridable)获取访问者。