2
votes
1answer
86 views
ADO.NET Data Service Entities Exposed to WCF
If a WCF service is consuming ADO.NET Data Services, what is the best approach to expose the Data objects to the WCF conusmers? DTO with your own Data Contract attributes? Is there a way to expose the …
2
votes
5answers
581 views
Synchronous ADO.NET dataservices calls in Silverlight
I'm using ADO.NET dataservices in a Silverlight application and since the silverlight libraries don't support the ToList() call on the IQueryable I thought it might be possible to create an extension …
2
votes
2answers
274 views
How to mock ADO.Net Dataservice calls from Silverlight
Has anyone found a good method of mocking out ADO.Net Data Service calls from a Silverlight application?
The power of Data Services seems to be the use of linq, client side, over entities. However …
1
vote
1answer
94 views
Customize ADO.NET Data Service Exception
Is it possible to have a DataServiceException pass along a list of errors to consumers?
Rather than just receive the standard Message, Stacktrace information I would also like to have a list of …
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 interface? I dont …
1
vote
1answer
118 views
Not the right <type>?
I'm confused. I've got a Silverlight project that currently runs and displays a list of servers from my mocked model (I am following the MVVM pattern).
The interface is coded as follows:
public …
1
vote
1answer
223 views
Intermediate ado.net dataservice in Silverlight
We're using Silverlight 2 with ADO.NET dataservices and to test the silverlight page we used a service in the same domain which works fine. We then decided to try use a proxy or intermediate service …
1
vote
3answers
798 views
How do I use Read-Only properties defined in partial (Entity Framework) classes over ADO.Net Data Services
I have objects that are defined by the Entity Framework that I have then added additional methods and properties to via partial classes. I think I understand most of the limitations around doing …
1
vote
1answer
925 views
How do I call a stored procedure exposed as an Entity Framework Function Import through ADO.NET Data Services (Astoria)?
I've created an Entity Data Model and imported several stored procedures as Function Imports. I'm exposing the EDM through ADO.NET Data Services (ANDS). Does ANDS automatically expose the functions …
0
votes
1answer
22 views
When hosting an ADO.NET DataService<T> in a WCF WebServiceHost how does one get access to the credentials supplied in the request?
If I have a type like:
public class Context
{
public Context()
{
}
public IQueryable<Record> Records
{
get
{
if (user == someone) //psuedocode
…
0
votes
1answer
96 views
Self Hosted ADO.NET Data Services, comsuming from an external Silverlight application
Issue:
An issue exists whereby I cannot access my Self Hosted ADO.NET Data Services from my RIA applications.
My services are hosted separately to the web projects with the Rich Internet …
0
votes
0answers
94 views
ADO.NET Data Service Exception Handling
I am looking for information on how people are handling business rule (and field validations) using an ADO.NET Data Service wrapped around an Entity Framework object context.
I have seen numerous …
0
votes
4answers
265 views
subsonic 3 alpha + ado.net data services any samples
There are a couple of resources on the Internet describing preview 2 of subsonic with Astoria :
…
