我根据Breeze支持的建议升级到1.4.1,但我遇到了以下问题。以前,新创建的实体的导航属性在哪里定义,但是null值为knockout observables。我修改了Breezejs TODO应用程序以显示它。
我的数据模型如下,我的前端代码在这里:
function reproduce() {
breeze.NamingConvention.camelCase.setAsDefault();
var manager = new breeze.EntityManager(serviceName);
manager.fetchMetadata().then(function () {
var parent = manager.createEntity('Parent');
console.log('otherProperty ' + parent.otherProperty());
console.log('childOne ' + parent.childOne());
// I cannot call parent.childrenTwo() since childrenTwois undefined
console.log('childrenTwo ' + parent.childrenTwo);
});
}
问题在于,在以前版本的breeze中,属性otherProperty和childOne将是具有null值的knockout observable,属性childrenTwo将是一个空的可观察数组。 但是,正如我在控制台中看到的那样,所有三个属性都是未定义的?这是故意的吗?
我当然可以自己定义它们,但这是很多工作,我希望能为我带来微风。另外根据Breeze文档“很少有理由定义已在元数据中描述的属性。” http://www.breezejs.com/documentation/extending-entities
更新1:
感谢Jay Traband,在我的复制应用程序中,我没有正确设置外壳。然而,childrenTwo仍未定义,我相信它应该是一个可观察的数组。我的生产应用确实设置了套管,所以我不得不重新调查它。
更新2:
再次感谢Jay Traband,我发现微风的Metastore不知道ChildTwo类型。因此,似乎我不是以某种方式注册它?我比Java Hibernate更熟悉Entity Framework。我的数据模型中缺少什么东西?
更新3:
ChildTwo没有明确的外键,我添加了它并且它有效。我想我真的需要牢记Breeze想要一个明确的外键。
public class ChildTwo
{
[Key]
public int Id { get; set; }
public int ParentId { get; set; }
[ForeignKey("ParentId")]
public Parent Parent { get; set; }
}
数据模型。
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Todo.Models
{
public class Parent
{
public Parent()
{
ChildrenTwo = new List<ChildTwo>();
}
[Key]
public int Id { get; set; }
[Required]
public string OtherProperty { get; set; }
[Required]
public ChildOne ChildOne { get; set; }
[Required]
public IList<ChildTwo> ChildrenTwo { get; set; }
}
public class ChildOne
{
[Key]
[ForeignKey("Parent")]
public int Id { get; set; }
public Parent Parent { get; set; }
}
public class ChildTwo
{
[Key]
public int Id { get; set; }
public Parent Parent { get; set; }
}
}
答案 0 :(得分:1)
我刚做了一些简单的测试,无法重复这个。在调用 createEntity 之后,我在所有测试中都看到了我的实体的导航属性作为knockout observables。一些想法;
你确定你不是无意中