Tagged Questions
The service-operations tag has no wiki summary.
4
votes
2answers
863 views
Unable to return custom class from WCF Data Service
I am trying to return a custom class from my WCF data service. My custom class is:
[DataServiceKey("ID")]
public class Applist {
public int ID { get; set; }
public string Name { get; set; }
}
...
3
votes
1answer
930 views
Consuming Service Operations of an ADO.NET Data Service from a .NET Client
I am trying to build an ADO.NET Data Service with lots of entities and a few service operations. On one side I created a ASP.NET Web Application, in which an ADO.NET Entity Data Model and an ADO.NET ...
2
votes
1answer
899 views
How to consume WCF Data Service Operations in client .NET Application?
Alright folks, I am a newcomer to Data Services and LINQ in desperate need of some guidance. In just a few days I have encountered numerous unexpected obstacles and I'm stuck on one now. I'm hoping ...
2
votes
2answers
568 views
How do I use .“Include” on a Service Operation for ADO.Net Data Services
I am using ADO.Net Data Services and have a Service Operation that ends up returning the results of some linq to entities statements. As a part of those Linq statements there is a .Include("NavProp") ...
1
vote
1answer
33 views
How to only allow access from WCF Data Service ServiceOperation
I use WCF with my ASP.NET MVC app, my data service get data from my (EF 4.1) .mdf file. But there is some feild that I want to show with authentication, for example:
public static void ...
1
vote
0answers
33 views
Is it possible to set MergeOptions on CurrentDataSource?
I expose some database views in my entity model because there are complex queries which can not be realized by using the standard OData query syntax. I use WCF Data Services for exposing these ...
1
vote
1answer
456 views
Calling an OData Service Operation from Linqpad
Does anyone know if its possible and if so, what the syntax is for calling a service operation via linqpad?
Also, can I used named parameters when I call it using linqpad- how? That would be great ...
0
votes
1answer
38 views
Is it possible to manipulate SOME entities in a ServiceOperation returning an IQueryable
I have a ServiceOperation to query items available to a certain user at a certain time.
In short this methode does:
var fullResult = from i in Items where ... select i; //get ALL possible items ...
0
votes
0answers
288 views
Complex data returned via WCF Data service service operation has invalid json
I am trying to return an IEnumerable via my service operation of WCF Data service. The operation runs fine in browser and returns json. However when I consume it in my client app via jQuery, firefox ...
0
votes
1answer
25 views
Mobile Network help [closed]
suppose in some place of the world, we have a state that has implemented a new service provider for mobile. The new service provider say having a name X has the following contraints:
X can be used ...
0
votes
1answer
1k views
ODATA Consume Service Operation from C# ASP.NET 4.0
I am connecting to an ODATA Service via a C# ASP.NET application, which has service operations such as:
GetItems(int? itemID, double? price)
I can consume this without issues in my browser, e.g.
...
0
votes
1answer
392 views
WCF Service Operation does not expose data as queryable
I have a service operation of the form:
[WebGet]
public IQueryable<BusinessObject> BusinessObjectsByType(string name)
with access rule
...