尝试使用breathjs时出现错误,该类型是实体框架中的复杂类型(代码优先)。
未捕获的错误:无法识别以下数据类型:Edm.Self.Address
是否有任何解决方法可以将复杂类型与breathjs一起使用?从我的实体框架模型:
public class Address
{
public string Id { get; set; }
public string Street { get; set; }
public string City { get; set; }
public string ZipCode { get; set; }
public string Contry { get; set; }
}