Tagged Questions

Also known as ADO.Net data services, this technology uses the OData protocol to transport data over the Internet using REST.

learn more… | top users | synonyms (2)

16
votes
6answers
2k views

How to Improve WCF Data Services Performance

I'm new to WCF Data Services so I've been playing. After some initial tests I am disappointed by the performance of my test data service. I realize that because a WCF DS is HTTP-based there is ...
8
votes
1answer
561 views

WCF Data Services and Self Tracking Entities

I have seen a couple of references stating that WCF Data Services handles change tracking automatically. Does that mean you don't need to create Self Tracking Entities (STE) and it works automatically ...
7
votes
4answers
719 views

Why would you not use WCF Data Services for querying data?

OK, so we are using entity framework and wish to expose data from these entities to consumers. This data is pretty common and although initially only consumed by WPF applications it could be consumed ...
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 ...
7
votes
3answers
2k views

WCF Data Services Security Options

What options are there for securing WCF Data Services? The open, RESTful nature of the services are extremely beneficial but I need to lock these services down so that only my Silverlight and WPF ...
6
votes
2answers
225 views

Custom wcf data provider and debugging a relationship error

I'm implementing a custom data provider, I have gotten it to the point that it returns data and can be filtered, but am having some trouble getting relationships to work. When querying the metadata ...
6
votes
1answer
331 views

Threading problem when adding items to an ObservableCollection

I'm updating an ObservableCollection of a WPF ViewModel in a WCF Data Service asynchronous query callback method: ObservableCollection<Ent2> mymodcoll = new ObservableCollection<Ent2>(); ...
6
votes
2answers
524 views

Is there a .NET class wrapper for the OData protocol Uri

Does anyone know if there an open-source .NET wrapper that can reliably parse the OData protocol Uri? I'm not looking for pointers to WCF Data Services... I'm creating a WCF-based data querying ...
6
votes
1answer
558 views

How do I authenticate a WCF Data Service?

I've created an ADO.Net WCF Data Service hosted in a Azure worker role. I want to pass credentials from a simple console client to the service then validate them using a QueryInterceptor. ...
6
votes
3answers
2k views

WCF Data Services implementation strategies

Microsoft has done a savvy job of not outlining the actual place for data services in the wonderful world of SOA/Web dev. So my question is are WCF Data Services designed to be used via external ...
6
votes
4answers
2k views

Why is my ServiceOperation method missing from my WCF Data Services client proxy code?

I have a simple WCF Data Services service and I want to expose a Service Operation as follows: [System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = true)] public class ...
5
votes
1answer
409 views

WCF / WCF Data Services / WCF RIA Services

Not to add another SO post regarding the different WCF stacks, but I want to make sure I'm heading in the right direction before I waste more development time... My scenario - Our company has a ...
5
votes
1answer
4k views

Entity Framework - Inserting records in child table when parent record already exists

Good afternoon- I am developing a Silverlight application using LINQ to Entity Framework for the data access layer. My n-tier database model includes about 30 or so tables, with a number of ...
5
votes
6answers
2k views

Using enums in WCF Data Services

I'm trying to manually build a WCF Data Service using a POCO data model and I cannot figure out how to properly expose enum values. Assuming a simple model like: public class Order { public int ID ...
5
votes
3answers
278 views

Collection Exists Criteria in WCF Data Services

I'm trying to ask my OData service: "Give me all the Products that do not have a Category" with the Products and Category have a m2m relationship. I've tried: from p in Products where ...
5
votes
3answers
236 views

Exposing a .NET class library (which primarily defines CRUD operations) as a service

What is the best, efficient and fastest way to expose an existing (class) library (which primarily defines CRUD operations ) as a service (WCF Service or WCF Data Service), so that it can be used with ...
5
votes
2answers
2k views

Can't get the JSONP working with WCF Data Services

It seems from all that I read and watched, exposing JSON from a WCF Data Service should be as easy as adding the JSONPSupportBehavior attribute to the service class. The problem is that VS2010 ...
5
votes
1answer
1k views

Ria Services vs WCF Dataservices

My Team are evaluation to a bigger Business portal. (Invoicing, Bookkeeping, Salaries.....) We are all used to work with DDD, O/R mappers with NHibernate as our first choice. We have chosen to work ...
5
votes
1answer
4k views

How to pass a collection of Entities to .NET RIA Data Service?

Is it possible to pass a collection of objects to a RIA Data Service query? I have no issues sending an Entity, an Int or an array of primitive types, but as soon as i declare a method like this ...
4
votes
1answer
105 views

Web service with that provides two interfaces is causing error in WPF application

I have a web service that provides two interfaces. One is "MyAppNameData" and the other is "MyAppNameSync". I am adding two service references to a WPF application. In the code, when I use ...
4
votes
2answers
155 views

What am I doing wrong? wcf & entity-framework

I just came across WCF today and started learning it. However, once I tried to combine it with the EntityFramework it stopped working. I created a entity model for my database dtcinvoicerdb, turned ...
4
votes
3answers
325 views

Which is better for building an API for my website: MVC or Ado.net data services?

I have a website built with MVC, and now I want to build an API for this website, to let users to use this API to implement different website, web services, plugins and browser extensions. I went ...
4
votes
2answers
156 views

WCF Data Services and Upserts

I have a WCF Data Services with an entity named Contract. there is a many to many between Contracts and Quotes : ( * ) Contract <----> ( * ) Quotes I have a method that adds/remove links between ...
4
votes
1answer
152 views

Customizing Entity Framework Code First

I have a database with a table : User { UserId, Name, Number, DateCreated, DateEffective, DateEnd, DateReplaced } I expose the information in the database containing the table through WCF Data ...
4
votes
3answers
291 views

SQL Azure vs WCF Performance

I've seen a lot of benchmarks on Azure performance, but I'm wondering if anyone knows of/has done a comparison to see which of the following scenarios performs better for a thick client application. ...
4
votes
4answers
132 views

getting rid of wcf data service tight coupling

I have a WCF Data Service that exposes my database over HTTP. I realized that in the future, if my database changes, the clients will need to be updated as well, meaning that I have tightly coupled ...
4
votes
1answer
122 views

WCF Data Service : How to query ALL entities when Paging is enabled?

I have enabled paging at my service level : config.SetEntitySetPageSize("*", 25); Now, whenever I try to query all my entities at client level, I only get 25 entities. How do I get everything ? ...
4
votes
1answer
788 views

WCF data services (OData), query with inheritance limitation?

Project: WCF Data service using internally EF4 CTP5 Code-First approach. I configured entities with inheritance (TPH). See previous question on this topic: Previous question about multiple ...
4
votes
1answer
375 views

Are WCF Data Services dead for Silverlight?

WCF RIA Services just got updated few days ago. WCF RIA services got complex objects, TT templating, etc. WCF RIA Services have (by default) fast and compact binary transport. WCF Data Services have ...
4
votes
2answers
1k views

Best Practices for Integrating AutoMapper with WCF Data Services and EF4

We are exposing a domain model via WCF Data Services. The model originates from EF4, and requires some additional work to get it into the required form for being published via the web-service. I'd ...
4
votes
2answers
862 views

Unable to return custom class from WCF Data Service

I am trying to return a custom class from my WCF data service. My custom class is: [DataServiceKey("ID")] public class Applist { public int ID { get; set; } public string Name { get; set; } } ...
4
votes
2answers
209 views

Custom property in partial class doesn't exist AFTER it's sent to client using WCF Data Services

So I have an Event class which is generated from Enitity Framework, I have extended what it generated in a partial like so: public partial class Event { [DataMemberAttribute()] public ...
4
votes
2answers
371 views

Customize feed for WCF Data Services using Entity Framework (Code First)

Can anybody tell me how to customize the OData feed for Ado.Net Data Services using Entity Framework (Code First/Only)? There is no EDMX file (as it is Code Only). I have tried adding the attribute: ...
4
votes
2answers
1k views

Why use a “RIA Services Link” instead of just an OData endpoint?

Before reading, please know I've read all the other posts about the differences between vanilla WCF, WCF Data Services and RIA Services. My question is specifically about why RIA Services is being ...
4
votes
1answer
2k views

Many-to-many relationship in .NET RIA services

I have a many-to-many relationship in my database of objects A to B. When i create a domain service the metadata looks fine. A has a collections of Bs, B has a collection of As. So it is correct. ...
3
votes
1answer
36 views

In WCF Data Services, how can I limit the entities visible to the consumer?

My Init method looks like this public static void InitializeService(DataServiceConfiguration config) { config.UseVerboseErrors = true; config.SetEntitySetAccessRule("*", ...
3
votes
1answer
81 views

How to escape a period (.) in WCF Data Services QueryString

I have a WCF Data Services service that exposes a set of ICD codes. The primary key for the underlying table and the data set that WCF provides access to is a varchar or string in C#. The service ...
3
votes
2answers
274 views

WCF Data Services/Entity Framework : Logging client's username, Authentication, Authorization

I am using Entity Framework with WCF Data Services and I have the following table in my database : Table Contract Id (int) Name (varchar) byUser (varchar) isDeleted (bit) Entity Framework class ...
3
votes
2answers
192 views

Getting started with WCF Data Services

This is the only code I have in an otherwise blank web application (.Net 4): public class Spork { public string Name { get; set; } public DateTime BirthDate { get; set; } } public class ...
3
votes
2answers
555 views

how to work around the default message size limit in WCF data service

I have encountered a problem with my WCF data service. One of tables contains too many data to return(about 80 fields) so that the size limit would be exceeded by only one record(above 60k by ...
3
votes
3answers
503 views

Linq query error

I am using following Linq query: from p in People where p.Name == "George Lucas" select p.TitlesActedIn where TitlesActedIn is a list. People and TitlesActedIn are associted But I am getting ...
3
votes
2answers
312 views

How should I use OpenID to authenticate to WCF Data Services from a Windows Phone 7 app?

I have a Windows Phone application which is reading and writing data from a WCF Data Services service which is hosted in and ASP.NET MVC 3 application. I can configure both client and server as ...
3
votes
1answer
624 views

How can I load second degree entity relations with a WCF data service?

I am trying to query a single entity in a database with a DataServiceQuery. The entity I am trying to load has relations to a graph of other entities that I want to load as well. MSDN describes here ...
3
votes
2answers
3k views

How to handle json DateTime returned from WCF Data Services (OData)

I believe I am missing something obvious here. When I request a JSON response from an OData service I get a different result for the DateTime properties than I do when I request XML. I'll use the ...
3
votes
2answers
755 views

How to host WCF Data Service (OData) in IIS7?

Does anyone know how to host a WCF Data Service (or OData) inside IIS7? I'm seeing lots of articles about hosting WCF, but none specific to WCF Data Service. Thank you very much.
3
votes
2answers
978 views

OData WCF Data Services - Related data (by foreign key) doesn't show up when calling the service

When I get the data using the URL in browser, I'm able to see the related data, for example: http://localhost/services.svc/Dinners(1)/RSVPs That lists 5 RSVPs for DinnerId = 1 in my case, but when ...
3
votes
1answer
744 views

Select entities where ID in int array - WCF Data Services, LINQ

I would like to return a set of entities who has and ID that is contained in a list or array of IDs using LINQ and Data Services. I know how to this using LinqToEF but I am at a loss how to this with ...
3
votes
2answers
232 views

Expose a class library as a “WCF Data Service”

Is it possible to expose a .NET (class) library through a WCF Data Service ? Makes this scenario sense ? Or is the usage of pure WCF the best and only way in this case ? Background: I have several ...
3
votes
1answer
344 views

WCF Data Services and Entity Framework

just a couple of questions? Is WCF Data Services tightly integrated with EF Can we have WCF Data Services with our own data contracts (custom classes)? Any links to samples? If I implement WCF Data ...
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] ( ...

1 2 3 4 5 12