Tagged Questions

1
vote
2answers
45 views

How do I implement IDataServiceMetadataProvider and tell my Data Service to use that custom provider?

There's no obvious entry point for implementing a custom provider for an ADO.NET Data Service using IDataServiceMetadataProvider, and then telling a Data Service to use that provid …
0
votes
1answer
22 views

ADO.NET Data Services - Uploading files

I am trying to write REST web service through which our clients can upload a file on our file server. IS there an example or any useful links which I can refer for any guidance? I …
0
votes
1answer
46 views

ado.net data services silverlight security

I have a application where the validation is done in the web server side (in the page). and the control is passed to the sl client. The SL client makes call to the ado.net data ser …
0
votes
1answer
64 views

Astoria Error - Expected an absolute, well formed http URL without a query or fragment.

I'm trying out my ADO.NET Data Service for the first time by having the model create using Entity Framework. I am testing to see if the service works via a client by creating a si …
0
votes
3answers
126 views

Ado Net Data Services BeginExecute Problem

public void metodoX() { foreach (TURNO t in listaTurnoPersona) { DataServiceQuery<VST_CANTIDAD_PERSONAS_POR_DIA> query = General.Entities.VST_CANTIDAD_PERSONAS_POR_ …
1
vote
0answers
47 views

Ado .net data services in the same app

I have an application with an EDMX and an Ado .net data service in it. I would like to make a call from the same application (not an http call) to the ado .net data service and wou …
1
vote
1answer
70 views

Why does ADO.NET Data Services use $ as query param identifier?

/Customers?$skip=30&$top=10 Is there a reason why you need '?' or '&' AND '$' to identify a query parameter? Is this a case of the implementation leaking into the interf …
1
vote
1answer
111 views

ADO.NET Data Services .NET client caching

On my service, I've added the following method: protected override void OnStartProcessingRequest(ProcessRequestArgs args) { base.OnStartProcessingRequest(args); …
0
votes
0answers
14 views

How do I wire up a WebForm to a ADO.NET Services “resource”?

I know I could use WebClient or WebRequest, but somehow this feels like using WebClient or WebRequest to do a postback or a crosspage postback. What do I need to do to get a WebFo …
0
votes
1answer
180 views

ADO.NET Data Services (Astoria) -> The Property Name specified for type is invalid.

I'm getting the following error: Error processing request stream. The property name '{PropertyName}' specified for type '{TypeName} is not valid I've looked around and everyone is …
2
votes
2answers
222 views

Astoria vs. SQL Server Data Services

What are in your opinion big differences between areas of usage for "Astoria" (ADO.NET data services) and SQL Server Data Services?
1
vote
2answers
41 views

Substituting Astoria Payload?

I'd love to use data services to publish read only data over http. What I'd really like is the ability to provide different shaped bits of xml that represent whats in my db using …