是否与表每层次(TPH)招展工作(Does Breeze work with Table Per H

2019-10-17 14:50发布

我试图堵塞BreezeJs到现有的数据结构,并得到一个错误的元数据提取。 我可以通过将下面的CarBones样本复制此

namespace CarBones.Models
{
  public abstract class VanBase
  {
    public int Id { get; set; }
    public string Manufacturer { get; set; }
    public int Wheels { get; set; }
  }

  public class BasicVan : VanBase
  {

  }

  public class LiveriedVan : VanBase
  {
    public string Livery { get; set; }
  }
}

然后在上下文

 public DbSet<VanBase> Vans { get; set; }

这足以触发

Uncaught TypeError: Cannot read property 'propertyRef' of undefined breeze.debug.js 5224

我能不能以这种方式与微风使用TPH? 然而?

Answer 1:

编辑:为v 1.3.1的微风现在不支持继承。

微风还不支持继承。 这是我们的名单上的,所以请投票支持它在微风用户音色这里 ,以便我们能够正确地优先考虑多方面要求的额外微风功能。 我们把这个场地非常重视。



文章来源: Does Breeze work with Table Per Hierarchy (TPH)