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.
このようなクエリがあります
select * from xxx where dates between '2012-10-26' and '2012-10-27'
これを Odata Services の URL に変換するにはどうすればよいですか
http://service/odata/Products?$filter=dates gt datetime'2012-10-26' and dates lt datetime'2012-10-27次のように照会できます。
http://service/odata/Products?$filter=dates gt datetime'2012-10-26' and dates lt datetime'2012-10-27