我正在尝试使用breathjs和angular使用odata查询Web api服务我正在获取具有正确属性的元数据
<Property Name="IncidentID" Type="Edm.Int32" Nullable="false" />
<Property Name="Name" Type="Edm.String" />
<Property Name="IncidentType" Type="Edm.Int32" Nullable="false" />
<Property Name="Description" Type="Edm.String" />
当我发送查询时
var query = breeze.EntityQuery
.from("Incidents").where("IncidentType", "lt", 60);
我收到错误,声称属性 IncidentType 不存在