武装你的WEBAPI-OData便捷查询
2021-03-06 01:28
标签:学习 帮助 集合 就是 microsoft lan 表示 public not 本文属于OData系列 目录(可能会有后续修改) 前文大概介绍了下OData,本文介绍下它强大便捷的查询。(后面的介绍都基于最新的OData V4) 假设现在有这么两个实体类,并按照前文建立了OData配置。 Controller设置如下,很简单,核心就几行: 使用OData,可以很简单的访问集合与单个对象。 请求集合很多,我们需要使用到查询来筛选数据,注意,这个查询是在服务器端执行的。 $Filter支持很多种语法,可以让数据筛选按照调用方的意图进行自由组合,极大地提升了API的灵活性。 在查询alarminfo的时候,我很需要API能够返回所有信息,其中包括对应的deviceinfo信息。但是标准的返回是这样的: 只有一个干巴巴的deviceid,要实现展示所有信息的功能,就只能再从deviceinfo的API请求一次,获取对应ID的devceinfo信息。 这就是所谓的N+1问题:请求具有子集的列表时,需要请求1次集合+请求N个集合内数据的具体内容。会造成查询效率的降低。 不爽是不是?看下OData怎么做。请求如下: 通过指定expand参数,就可以在返回中追加导航属性(navigation property)的信息。 本例中是使用的外键实现的。 实现了展开之后,那能否查询在多个层级内的数据呢?也可以,考虑查询所有longitude大于90的alarmtype。 注意,这里表示层级不是使用 结果如下: 可以使用any/all来执行对集合的判断。 对于我的例子,我使用 服务器会弹出500服务器错误,提示: 查看文档之后,原来是我数据的层级比较深了,不在顶级层级类型的查询,在EF Core3.0的版本之前是支持的,在3.0以后就不支持了,主要是怕服务器内存溢出。如果真的要支持,那么就使用 有同学已经注意到了,我这边使用的timestamp的格式是unix形式的时间戳,而没有使用到js常用的ISO8601格式( OData提供了一个语法,使用 谓词会使用以下的顺序:$filter, $inlinecount(在V4中已经替换为$count), $orderby, $skiptoken, $skip, $top, $expand, $select, $format。 官方有一个查询的Service,可以参考学习和试用,给了很多POSTMAN的示例。 不过有一些略坑的是,有的内容比如Paging里面,加入$count的返回是错的。 查询的方法这么复杂,如果手动去拼接query string还是有点虚的,好在有很多库可以帮助我们做这个。 官方提供了各种语言的Client和Server的库:https://www.odata.org/libraries/ 前端比较常用的有o.js 这样可以免去拼请求字符串的烦恼,关于 武装你的WEBAPI-OData便捷查询 标签:学习 帮助 集合 就是 microsoft lan 表示 public not 原文地址:https://www.cnblogs.com/podolski/p/12880185.html
Introduction
public class DeviceInfo
{
[Key]
[MaxLength(200)]
public string DeviceId { get; set; }
//....//
public float Longitude { get; set; }
public Config[] Layout { get; set; }
}
public class AlarmInfo
{
[Key]
[MaxLength(200)]
public string Id { get; set; }
public string DeviceId { get; set; }
public string Type { get; set; }
[ForeignKey("DeviceId")]
public virtual DeviceInfo DeviceInfo { get; set; }
public bool Handled { get; set; }
public long Timestamp { get; set; }
}
[ODataRoute]
[EnableQuery]
[ProducesResponseType(typeof(ODataValue
集合与单对象
//访问集合
GET http://localhost:9000/api/DeviceInfoes
//访问单个对象,注意string类型需要用单引号。
GET http://localhost:9000/api/DeviceInfoes(‘device123‘)
$Filter
//查询特定设备在一个时间的数据,注意这里需要手动处理一下这个ID为deviceid。
GET http://localhost:9000/api/AlarmInfoes(‘device123‘)?$filter=(TimeStamp ge 12421552) and (TimeStamp le 31562346785561)
$Expand
{
"@odata.context": "http://localhost:9000/api/$metadata#AlarmInfoes",
"value": [
{
"id": "235314",
"deviceId": "123",
"type": "低温",
"handled": true,
"timestamp": 1589235890047
},
{
"id": "6d2d3af3-2cf7-447e-822f-aab4634b3a13",
"deviceId": "5s3",
"type": null,
"handled": true,
"timestamp": 0
}]
}
GET http://localhost:9000/api/alarminfoes?$expand=deviceinfo
{
"@odata.context": "http://localhost:9000/api/$metadata#AlarmInfoes(deviceInfo())",
"value": [
{
"id": "235314",
"deviceId": "123",
"type": "低温",
"handled": true,
"timestamp": 1589235890047,
"deviceInfo": {
"deviceId": "123",
"name": null,
"deviceType": null,
"location": "plex",
"description": "99",
"longitude": 99,
"layout": []
}
}
层级查询
GET http://localhost:9000/api/alarminfoes?$expand=deviceinfo&$filter=deviceinfo/longitude gt 90
.
而是使用的/
。如果使用.
容易被浏览器误识别,需要特别配置一下。{
"@odata.context": "http://localhost:9000/api/$metadata#AlarmInfoes(deviceInfo())",
"value": [
{
"id": "235314",
"deviceId": "123",
"type": "低温",
"handled": true,
"timestamp": 1589235890047,
"deviceInfo": {
"deviceId": "123",
"name": null,
"deviceType": null,
"location": "plex",
"description": "99",
"longitude": 99,
"layout": []
}
}
any/all
这个参考:GET http://services.odata.org/V4/TripPinService/People?$filter=Emails/any(e: endswith(e, ‘contoso.com‘))
GET http://localhost:9000/api/DeviceInfoes?$filter=layout/any(e: e/description eq ‘0‘)
System.InvalidOperationException: The LINQ expression ‘DbSet
AsEnumerable()
去实现客户端查询。datetime相关
2004-05-03T17:30:08+08:00
)。如果需要使用到这种时间怎么办?(datetime‘2016-10-01T00:00:00‘)
这种形式来表示Datetime,这样就能够实现基于datetime的查询。查询顺序
filter总时最优先的,随后就是count,因此查询返回的count总是符合要求的所有数据的计数。范例学习
前端指南
const response = await o(‘http://my.url‘)
.get(‘User‘)
.query({$filter: `UserName eq ‘foobar‘`});
console.log(response); // If one -> the exact user, otherwise an array of users
o.js
的详细介绍,可以看这里。参考资料
文章标题:武装你的WEBAPI-OData便捷查询
文章链接:http://soscw.com/index.php/essay/60642.html