1
vote
1answer
134 views
Custom authorization in ADO.NET Data Services
I have an ADO.NET Data Service that exposes an Entity Framework data model (.edmx).
I need to allow / reject reads/writes to certain entities for certain users. I use Windows Auth …
0
votes
1answer
17 views
Returning Entities + Extra Data with ADO.NET Data Services
Trying to figure out the best way to accomplish this. So I have a table of Stores with properties:
StoreID, Name, Latitude, Longitude, etc.
I'm using ADO.NET Data Services (Asto …
1
vote
2answers
79 views
Where can I find information on creating a WCF Data Services Custom Data Service Provider?
Our team is evaluating using WCF Data Services (formerly ADO.NET Data Services), and have determined we'll have to create a Custom Data Service Provider. Where can we find a sampl …
0
votes
2answers
37 views
ADO.NET DataServices with Prism
I've start using prism with silverlight 3, but, we are trying to implement it to work with ADO.NET DataServices. The "DataServiceQuery" query type required to use with Silverlight, …
1
vote
1answer
18 views
What is purpose of UpdateObject for Linq to REST?
When one is using ADO.NET Data Services and consuming it via the Linq to REST (formerly Project Astoria), it doesn't seem to be as intuitive as it could be.
Namely, with normal Li …
1
vote
1answer
7 views
Can I (safely) use the ThreadStatic attribute in ADO.NET Data Services?
I want to store per-thread data in an ADO.NET Data Service. Is it safe to use the ThreadStatic attribute on my thread-specific static variable, or will I run into problems? My conc …
0
votes
2answers
96 views
Data compression for ADO.NET data services
I have an ADO.NET data service exposed by a .NET app (not IIS) which is consumed by a .NET client app. Some calls to this data service return large amounts of data.
I'd like to co …
0
votes
1answer
21 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 …
1
vote
2answers
44 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
2answers
71 views
data not deleted from DB when removing items in RIA Services
I have a Silverlight3 client consuming an unmodified/code-generated DomainService through RIA Services with a Linq-to-SQL back end. Is this the correct way to delete a row from th …
1
vote
4answers
271 views
Does LINQ Support Composable “OR Queries”?
In another posting: Does Linq-To-Sql support composable queries there was discussion on how to compose/concat where clauses dynamically. This appears to be done with an "AND" (i.e …
0
votes
1answer
44 views
Tunneling HTTP PUT through POST in ADO.NET Data Services
The problem with J2ME clients consuming ADO.NET Data Services (Astoria) is that there is no support for the PUT and DELETE verbs.
Using the WCF REST Starter kit one can intercept …
0
votes
1answer
58 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
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 …
3
votes
5answers
153 views
ADO.NET Data Service — non .NET consumers
Has anyone come across an example of a non .Net consumer of an ADO.NET Data Service? I am on the second day of looking at what Astoria is and how it can be used. I am also trying t …
