Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

How do I properly host a WCF Data Service that connects to SQLServer in IIS? Why am I getting errors?

I'm playing around with WCF Data Services (ADO.NET Data Services). I have an entity framework model pointed at the AdventureWorks database. When I debug my svc file from within Visual Studio, it ...
3
votes
2answers
179 views

DataServiceContext.Timeout Property Unit of Time

I am trying to determine what is the unit of time for the ADO.Net Data Services timeout property. MSDN help doesn't identify it: ...
3
votes
1answer
2k views

Insert New Data using Linq — WCF Data Services (formerly ADO.NET Data Services)

I am really struggling to insert some data into 2 database tables. I am using Linq over WCF Data Services using Entity Framework 4. The 2 tables look like this: CREATE TABLE [dbo].[Accounts] ( ...
2
votes
0answers
264 views

SharePoint 2010 accessing a list via Data Services

We have just finished deploying SharePoint 2010 in our company, When i try to access a data service endpoint it simply times out (either through code or browser) The endpoint i am trying to his is ...
2
votes
1answer
193 views

OData client only returning last entry in sequence?

I'm hoping that I'm just using the API incorrectly, but for some reason, when I query my oData service from wp7, I am only receiving the last entry in the sequence. I'm pretty sure the service is ...
2
votes
1answer
268 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
2k 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
626 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
309 views

Dynamically adding WCF Data Services Endpoints

I've been researching oData and WCF DataServices and I think it would work great for my project. However, each of our clients have their own database. So, is there a way to dynamically create a WCF ...
1
vote
1answer
516 views

Determine request Uri from WCF Data Services LINQ query for FirstOrDefault against Azure without executing it?

Problem I would like to trace the Uri that will be generated by a LINQ query executed against a Microsoft.WindowsAzure.StorageClient.TableServiceContext object. TableServiceContext just extends ...
1
vote
0answers
239 views

Can an ASPX CascadingDropDown Extender use a Service Path that is not an ASMX? (WFC SVC or Data Service)

I have noticed that all the example in the internet uses Service Path of ASMX for a cascading dropdown list, is there a way to use more modern technology as it's service path? I was wondering if I ...
1
vote
3answers
429 views

Is this a bug? : I get “ The type … is not a complex type or an entity type” in my WCF data service using the Reflection provider

When invoking a query on the data service I get this error message inside the XML feed: <m:error> <m:code></m:code> <m:message xml:lang="nl-NL">Internal Server ...
1
vote
2answers
164 views

How can I change the xml:base published by a WCF Data Service?

I have a WCF Data Service for which I have a custom URL Rewriter so the real url is not visible and I can add special elements in the path for customizing it. For example: ...
1
vote
1answer
256 views

Can't submit new object to WCF DataService because of Primary Key constraint

I've got a SQL database that uses Guid's for PK's and upon insert, it generates a NewId(). I have an EF data context setup pointing to that database with the primary keys setup with the Entity ...
1
vote
4answers
159 views

How i can send an HttpRequest from C++

Im using DataServices and OData protocol, i need to generate Get, Post, Delete, and Update from a c++ aplication. how i can do this? the easiest way ??
1
vote
1answer
1k views

WCF Data Services - neither .Expand or .LoadProperty seems to do what I need

I am building a school management app where they track student tardiness and absences. I've got three entities to help me in this. A Students entity (first name, last name, ID, etc.); a ...
1
vote
2answers
842 views

Change DataSource WCF Data Services

Anybody know how to change the current data source of a DataServices on the fly? by Example i want to consultthe service and pass a parameter saying to pick up another connection., Is Possible???
1
vote
0answers
432 views

DataServiceQuery

Is there a GetTable or similar method on The ado.net dataserviceContext object in silverlight. I need to write a generic query builder to aid my silverlight LOB app. This could carve the workload in ...
1
vote
1answer
537 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
102 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
328 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
371 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
2k 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
1k 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
36 views

WCF Data Service - logging and authentication

I'm evaluating the WCF Data Service approach for my next project. As I would need to be flexible on logging and authentication I have a couple of questions that maybe you are able to answer. 1) Am I ...
0
votes
1answer
38 views

WPF with arbitrary, unknown databases - Client/Server or Desktop app?

My company is planning to turn an older Winforms application into a WPF/Silverlight Client/Server app. The idea of having a small server app is to have a list of the accessible data bases combined ...
0
votes
1answer
167 views

Can a .NET oData DataService force filtering child records?

This should be a simple scenario - I have a data model with a parent/child relationship. For example's sake, let's say it's Orders and OrderDetails - 1 Order -> many OrderDetails. I'd like to expose ...
0
votes
2answers
81 views

DataSource.Table.Where(stringOfConstraint) does not exist in LinqToSQL for OData support?

I'm looking at this Telerik demo, and am unable to get the "count" statement to work. I believe that the following command is only supported on EntityFramework, and not Linq2SQL. return ...
0
votes
1answer
59 views

How to do filtering for many entities of many DataServices in one common class?

Tier database and every single table has a DataSetId and I absolutely want to be sure that the data is always partitioned correctly. Currently I'm using the QueryInterceptor attribute but it's messy ...
0
votes
1answer
63 views

DataServices XML to VB Code

I was given XML files I believe were generated from an oData service endpoint with the $metadata url parameter. My question, how do I take these files and generate classes? Or am I thinking about ...
0
votes
1answer
107 views

Are protected entity properties in EF 4 a bad idea with data services?

After some NullReferenceException headache from deep down System.Data.Services I found out that data services doesn't like properties in the EF model marked as protected. The exception occurs when ...
0
votes
1answer
495 views

OData - Data Service Simple Authentication

I would like to add simple authentication to Data Services, for now only to restrict access for particular applications by simple token. I don't need Domain Authentication or Forms authentication. I ...
0
votes
3answers
585 views

WCF Data Service SaveChanges problem

I've published wcf dataservice project to IIS7 with .NET 4 installed on that server. Everything worked fine, but when i called SaveChanges from client, service returned error: Server Error in '/' ...
0
votes
1answer
184 views

ASP.NET MVC with ADO.NET DataServices

In the project i am working on, i want to use the ADO.NET data services as data access layer. so that other parts of my application (except asp.net mvc web site) could also access it from the same ...
0
votes
1answer
82 views

What's the best way to validate EntityFramwork 4.0 classes?

I've done a fair amount of searching but I've yet to find an easy way to validate EntityFramework 4.0 entities passed accross the wire via WCF Data Services. Basically, I want to do something on the ...
0
votes
1answer
517 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
2answers
801 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
4answers
679 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 : ...