Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我像这样使用 odata 时: $filter=startswith(tolower(firstName),tolower('A')) 它不起作用。
我想知道 tolower 或 toupper 是否可以与startswith一起使用?
那应该行得通。
作为实时服务的示例,试试这个:
http://services.odata.org/v3/OData/OData.svc/Products?$filter=startswith(tolower(Name),'b')
在该服务中,有一个名为“Bread”的产品。如果您未tolower在 URL 中包含调用,则不会返回此实体。如果您包含tolower,则将包含“面包”产品。
tolower