The Open Data Protocol (OData) is a Web protocol for querying and updating data. It enables rich relational data that is accessible from nearly any platform by using web standards such as REST, AtomPub, and JSON.
0
votes
0answers
12 views
OData with webapi - navigation property
i am writing OData service which is built on WebApi asp.net, i am building my own EDM
ODataModelBuilder builder = new ODataModelBuilder();
builder.Namespace = "Models";
...
0
votes
1answer
41 views
how to cast an anonymous type to IQueryable<Order_Detail> in C#?
I am creating an OData service method in which I have written following code
[WebGet]
public IQueryable<Order_Detail> getByYear(int year)
{
var dc = new ...
1
vote
1answer
27 views
Breeze doesn't expand TPH entities correctly
Breeze doesn't expand TPH entities correctly.
When using expand in breeze if you are using TPH expand will only work for the first entity, the others properties will be null. If I change the entity ...
0
votes
0answers
13 views
odata - disable paging in custom provider
I have created an OData wrapper layer to my existing data engine. All operations including: sorting filtering and paging are passed directly to my existing engine and retrieve the needed data.
...
0
votes
0answers
15 views
odata4j - getting an exception when executing a functioncall
I want to execute the functioncall GetProductsByRating from the services.odata.org/OData/OData.svc/ odata web-service endpoint, using odata4j.
My code is the following:
Enumerable<OObject> e = ...
1
vote
1answer
23 views
Looking for odata library without entity framework model
I am interested in creating a odata wcf data service using visual studio 2012. However I do not want to use an entity model framework but rather use my scheme less nosql dataset to store and retrieve ...
0
votes
1answer
28 views
Can't get Odata service configured correctly
I can't seem to get my Controller and Mappings configured correctly. I am able to connect just fine if I revert to a standard ApiController and default mapping, but can't connect using the ...
0
votes
0answers
13 views
use same entity model from different DB in OData protocol
We want to expose in OData the same entities from different Databases.
We also would like to have an easy way to add a new DB with the same entities to the OData, without the need to re-compile the ...
0
votes
1answer
21 views
Consuming WCF Data Services Action Provider for Entity Framework
I have a DataService class on top of a Entity Framework 5 DbContext:
public class MyDataService : DataService<MyDbContext>, IServiceProvider
{
[WebGet]
public IQueryable<Product> ...
0
votes
0answers
20 views
Sharepoint Excel Rest api is not working with workbook which includes % in name
Here I am trying to use Excel Rest Service to get some data from SharePoint.
Excel file Name: UserData.xlsx
This excel have two workbook
Work Data
User Salary%
I am able to get work data by ...
2
votes
2answers
45 views
oData $count doesn't work with EntitySetController<TEntity, TKey> in web api 4
I'm useing EntitySetController to create an oData web api controller, and everything works well, except to get the total records count.
THe controller is defined as below:
public class ...
0
votes
1answer
23 views
How do you Expose Inherited Entities using WCF and OData?
If I have an OData inheritance hierarchy exposed by WCF data services how do I expose the subclass entity as its own entity set? What URI should I use to access it?
Let's say I have an OData URL as ...
0
votes
0answers
19 views
Can you consume oData in an SSRS report?
Is it possible to consume oData in an SSRS report? If so how do I go about this?
I found the following which seemed quite hopefuly, but nothing recently addresses to me if this is possible: ...
1
vote
2answers
37 views
How to inspect OData Command collection in Web API?
I have a Web API service exposing an OData API resource. The flow of logic is simple: the Get() method calls the repository to get all (people) and the filtering as a result from the OData commands on ...
0
votes
0answers
41 views
KendoUI DataSource - OData querystring from filter attribute
In a current project I would like to use the $http service of angular to make HTTP requests in my Kendo Data Sources, because I am using a response interceptor as described in this blog:
...
0
votes
0answers
16 views
OData4j API Explaination
I was wondering if anyone has seen any documentation on how to use the consumer.getEntity(Class clazz, String href) function. How do you tell OData4j how to parse the entity to the supplied class?
...
1
vote
2answers
51 views
Implementing OData with WebApi and Mapped Models
I am trying to implement OData in WebApi. I am using the repository pattern and EF5 (in the backend) which is still consistent with all the examples I have found. Here is where thing go wonky. I am ...
1
vote
1answer
95 views
Breeze.js : how to store an entity relation using the OData adapter
My goal is to persist a simple relationship between two breeze entities on my OData server.
I've setup a server, I am able to:
insert data
query data
create a relation between two entities ...
0
votes
2answers
24 views
Delete entry from database with WinJS and OData
I'm trying to delete an entry from the database by odata. I get the error message
{"error":{"code":"","message":{"lang":"en-US","value":"Bad Request - Error in query syntax."}}}
my code:
function ...
0
votes
0answers
25 views
How call WebAPi in phonegap?
I am calling Web API by using Datajs and it is working in each browser but when i am calling this by Phonegap then i am getting error
Http Request failed.
function DefaultHandler() {
var ...
0
votes
1answer
52 views
Breeze & OData: Trouble expanding a collection
What works:
In Breeze I can execute this query:
Q1
breeze.EntityQuery.from('accounts').where('id', 'eq', account_id)
which results in this request:
R1
...
0
votes
1answer
18 views
OData - filter by nested property
does anyone know how to express an OData $filter against a nested property?
for ex. I have the following Atom entry,
<entry>
...
<m:properties>
...
<d:RegardingObjectId ...
0
votes
1answer
32 views
Is there a Silverlight LINQ-to-OData translater that can be used with Web API?
I am attempting to build a Silverlight application that talks to an ASP.NET Web API, however Web API doesn't provide the same client-side proxies as WCF Data Services making LINQ to OData a challenge. ...
0
votes
0answers
30 views
OData service for windows store apps
in my next windows store apps i want to use OData (WCF Data Service) i don't know how to create and consume OData Service so is there any example to jump start with OData for windows store app
i ...
1
vote
0answers
46 views
Get NavigationProperty on OData does not work
The goal is to retrieve an object already loaded with their NavigationProperties:
Problem
Even informing $expand on OData URL, the navigation property is not loaded!
Full image: ...
0
votes
1answer
80 views
Using OData actions
Versions
To use features like $select and $expand upgraded all packages WebApi and OData for pre-release versions (from aspnetwebstack).
Microsoft.AspNet.WebApi -> 5.0.0-beta1-130514
...
0
votes
1answer
30 views
How to return a different object from the one you run a query on in OData?
I'm trying to return an object from the controller's Get method that is of a different class from the class the query is run on.
Based on the answer here, this is what I'm doing:
public ...
0
votes
1answer
35 views
WinJS OData JSON
try to send data to my database by web service an get this error:
Primitive values of type 'Edm.Decimal' and 'Edm.Int64' must be quoted in the payload. Make sure the value is quoted
here is my ...
1
vote
1answer
59 views
How can i expose dto objects using wcf data service with ef code first?
I am trying to make a wcf data service where i dont want to get acces to the database models but instead i want to use Data transfer objects. I have been reading a lot on the internet about how to ...
0
votes
1answer
37 views
Entity version in odata using accept header in web api
I am using Web API to create RESTful services. I decided to using Accept header as a api versioning mechanism by following this implementation.
...
0
votes
1answer
38 views
Appbar not working in windows phone 7 when using codes to navigate to another page
Appbar works great but when I use
this.Content = new PAGE(Constructor1, Constructor1, Constructor1);
to navigate to other page....App bar doesn't show up....:|
Same Xaml works for other page what ...
0
votes
2answers
46 views
Include count of linked records in OData result
I've got a table "Events" with a linked table "Registrations", and I want to create an OData service that returns records from the Events table, plus the number of registrations for each event. The ...
0
votes
1answer
41 views
How to transform LINQ filter expression to SQL Query?
I'm wondering how I can transform a FilterExpression in LINQ into a SQL clause.
{it => (IIF((it.DatasetTitle == null), null, Convert("Ref".Contains(it.DatasetTitle))) == Convert(True))}
Are ...
0
votes
0answers
21 views
How do you expose a Grails domain model using OData?
Ideally there would be a plugin that automatically exposed the Grails domain model as OData but I can't see one.
There is OData4j which will let you expose POJOs or JPA as OData however it uses ...
0
votes
0answers
41 views
Using Expand on List property: The argument must be of type 'IEnumerable'. OData
I use Asp.Net Web Api with OData(5.5.0-alpha2).
And I have a model:
public class Model
{
public List<Event> Events { get; set; }
public List<User> Subscribers { get; set; }
...
1
vote
1answer
38 views
OData Action without a target entity
Is it possible to have an OData Action that is not bound to a particular entity or instance, but rather can be invoked upon a collection? Such as...
...
1
vote
1answer
64 views
How can I get Breeze to query $metadata instead of Metadata?
I set up my odata service with Node, MongoDB and JayData. When I hit http://localhost:8000/odata/findash.svc/$metadata in my browser I get the metadata exactly as I would expect.
In the browser ...
1
vote
1answer
75 views
OData Web API not supporting Chrome and Firefox
i have created a Web API with oData and calling by datajs so it is running fine for IE but not in other browsers.
The code is as below
my Controller class is
public class CompanyController: ...
0
votes
0answers
18 views
Interceptors in WCF data service
using ChangeInterceptors I can perform custom modifications on the objects currently being processed. Using QueryInterceptors I can only influence whether an object is returned by the wcf or not.
Is ...
0
votes
1answer
33 views
Is there a way to represent summary rows with OData?
I'm trying to tack on additional information to the list of items returned from an ODataController's method. The use case is summary rows. So we basically want to return the rows of the report and ...
-1
votes
0answers
38 views
Insert rows into tables using OData POST
What is the standard method to insert data into a table, update a table, delete rows in a table using OData? My front end is SAP UI5 and the tables are stored on a HANA SYSTEM. Do i have to use a POST ...
0
votes
1answer
84 views
Why doesn't my oData response have navigation properties
If you look at the following sample oData feed you'll see included navigation properties for 'child' items to tell you which URL to follow:
...
0
votes
1answer
50 views
How to transform OData filter to a LINQ expression?
I'm trying to extract the filter expression from ODataQueryOptions so that I can use it in my business logic class.
public PageResult<Poco> Get(ODataQueryOptions odataQueryOptions)
{
...
1
vote
2answers
65 views
Caching Data in Web API
I have the need to cache a collection of objects that is mostly static (might have changes 1x per day) that is avaliable in my ASP.NET Web API OData service. This result set is used across calls ...
1
vote
0answers
69 views
The best way to modify a WebAPI OData QueryOptions.Filter
I am using the OData sample project at http://www.asp.net/web-api/overview/odata-support-in-aspnet-web-api/working-with-entity-relations. In the Get I want to be able to change the Filter in the ...
0
votes
1answer
52 views
Call a WCF Data service boolean method
I'm trying to receive an answer from a WCF method from the client. When I try to execute void methods, they are working fine. For example:
Uri u = new Uri(string.Format(LogIn.ctx.BaseUri + ...
0
votes
1answer
48 views
How to do custom paging with EntitySetController
I'm trying to implement custom paging with the EntitySetController.
public class MyController : EntitySetController<Poco, int>
{
public IQueryable<Poco> Get()
{
var result ...
-1
votes
0answers
25 views
Install-Package LinqToQuerystring.WebApi [closed]
I'm working on OData JSon Plugin for MyPrettyCMS (ASP.net MVC4 Open source project).
I found the project :
https://github.com/Roysvork/LinqToQuerystring
It seems to respond to my needs.
I follow ...
0
votes
1answer
58 views
Patch entity with delta
I have an override that patches an entity.
protected override Books PatchEntity(int key, Delta<Books> patch)
{
var Book = db.books.FirstOrDefault(p => p.ID== key);
if (Book == null)
...
1
vote
1answer
41 views
Model Tracking In Entity Framework
We were using Microsoft WCF Web Services and Entity Framework ORM in our project.
When client call each Web Services,Entity Framework keep state of each model in memory for tracking model state for ...

