0
votes
1answer
23 views
Load a property in a batch in ADO.Net Data Services in Silverlight
I'm using ADO.Net Data Services (Astoria) in Silverlight 3 and I want to delay loading properties on an entity until after the initial load. However, when I'm ready to load them I'd like to batch the …
0
votes
1answer
30 views
Using Generic Methods with a WebService like WCF or ADO.NET Data Services
Is it possible to use generic methods with WCF or ADO.NET DS?
Or is it possible to create a generic WebService Repository with WCF or ADO.NET DS?
0
votes
2answers
48 views
How to make apps access my model without have to spread my model DLLS through them
I have an architectural question. We have many applications in our company and we are planning to use ASP.NET MVC and Entity Framework in our future projects. The next project that we need to …
0
votes
0answers
35 views
S#harp architecture mapping many to many and ado.net data services: A single resource was expected for the result, but multiple resources were found.
Hi, I'm developing an application that reads data from a SQL server database (migrated from a legacy DB) with nHibernate and s#arp architecture through ADO.NET Data services. I'm trying to map a …
0
votes
1answer
44 views
Ado.Net Entity Framework Code-Only with Ado.Net Data Service
Im using the pre release of Ado.Net and can't understand how I use that with Ado.Net Data Service.
The code for the ObjectContext
public class TradingContext : ObjectContext
{
private …
0
votes
0answers
16 views
ADO.NET Data Service API Versioning
Hi guys,
We created an ADO.NET Services on top of our EDMX file as the main entry point for our central application. In the near future a lot of distinct applications will show up and consume our …
0
votes
1answer
39 views
What are the steps to read an object from an ADO.net data service?
Hi, I'm new to ADO.net data services (and to .net in general too..), I'm having this project where I need to setup a data service to read and write to a database with nHibernate, I've created the …
0
votes
2answers
40 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 (Astoria) to create a web …
0
votes
0answers
37 views
Reusing Types between ADO.NET Data Services and WCF service in Silverlight
I have an ADO.NET Data Service and a regular WCF service. I'm using both these services in a Silverlight application. The WCF sercvice has an operation which has a parameter of the same type as an …
1
vote
2answers
21 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 concern is that my …
0
votes
0answers
25 views
ADO .net Data Service error ‘undefined’ is not a supported HTTP method in IE8
Edit1:This error is caused by this bug and solved.
I am using ASP .net Ajax Library and their CDN.
The code is like this
var dataContext;
Sys.require([Sys.scripts.Templates, …
0
votes
2answers
132 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 compress the XML data …
1
vote
2answers
38 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 haven't seen many …
1
vote
2answers
111 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 sample implementation of …
0
votes
2answers
49 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, requires a …
