我有兴趣使用 Visual Studio 2012 创建 OData wcf 数据服务。但是我不想使用实体模型框架,而是使用我的方案较少的 nosql 数据集来存储和检索数据。有没有一种方法可以让我控制 odata 服务,而不会陷入特定的类结构,例如 Microsoft 的实体框架。
问问题
1947 次
1 回答
4
您可以在没有实体框架的情况下使用 Microsoft OData 实现。您需要的是IQueryable
. 这是查询对象数组的示例 OData 服务:
using System.Web.Http;
using System.Web.Http.OData;
using System.Web.Http.OData.Builder;
using System.Web.Http.OData.Query;
// GET api/values
[ActionName("FromList")]
public IList<Poco> GetFromList(ODataQueryOptions<Poco> queryOptions)
{
IQueryable<Poco> data = (
new Poco[] {
new Poco() { id = 1, name = "one", type = "a" },
new Poco() { id = 2, name = "two", type = "b" },
new Poco() { id = 3, name = "three", type = "c" }
})
.AsQueryable();
var t = new ODataValidationSettings() { MaxTop = 25 };
queryOptions.Validate(t);
var s = new ODataQuerySettings() { PageSize = 25 };
IEnumerable<Poco> results =
(IEnumerable<Poco>)queryOptions.ApplyTo(data, s);
return results.ToList();
}
public class Poco
{
public int id { get; set; }
public string name { get; set; }
public string type { get; set; }
}
于 2013-05-24T09:44:15.443 回答