有没有办法通过 OData 服务中的多个或所有列执行关键字搜索?
例如,我可以使用以下 URL 查询找到所有带有关键字“James”的标题:
http://odata.netflix.com/Catalog/Titles ?$filter=substringof('James', Name)
有没有办法创建一些自由文本搜索,它将按所有列或几列搜索,而无需显式添加每个条件,例如:
http://odata.netflix.com/Catalog/Titles ?$filter=substringof('James', Name) or substringof('James', Synopsis) or substringof('James', WebsiteUrl)