我试图堵塞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? 然而?