The wcf-data-service tag has no wiki summary.
4
votes
1answer
351 views
Data Service using EF - is it possible to use WebGet method which returns a custom type?
In my project I use Data Service which use EF. Now I have a custom class which I also want to expose through my Data Service, but I can't make it work, it's seems like it is impossible to mix custom ...
3
votes
2answers
78 views
How can I keep Entity Framework from generating inefficient queries in SQL Server?
I have an entity defined in an EF 4.0 that is based on a view. The view lays over a table with about 18 million rows of data. I have selected the 4 deterministic properties of the entity as a compound ...
2
votes
1answer
987 views
How to consume WCF Data Service Operations in client .NET Application?
Alright folks, I am a newcomer to Data Services and LINQ in desperate need of some guidance. In just a few days I have encountered numerous unexpected obstacles and I'm stuck on one now. I'm hoping ...
1
vote
1answer
65 views
WCF Data Service Operation loses order of subEntities in Silverlight Client
I have a WCF DataSerice OPeration wich exposes Businesses and Customers.
In the server side I sort each business's Customers by LastName, this way:
List<Customers> orderedCustomers = ...
1
vote
2answers
424 views
How do I expose a TimeSpan through a WCF Data Service?
I am creating a WCF Data Service for my database of appointments.
I'm storing the appointment as a DateTime with a duration of type TimeSpan. When I attempt to access my data service, I get the ...
1
vote
3answers
1k views
How do i get an inner join in a WCF Data Service
Lets say i have 2 tables, table1 and table2, with a shared key "id"
if i want an inner join of those two tables using sql, i'd do something like
select id, x, y, z
from table1
inner join table2
on ...
0
votes
1answer
152 views
How to configure IIS 7.5 to allow Inserts and Deletes with WCF Data Services (PUT and DELETE)
I have a WCF Data Service that works fine on my development system. But when I deployed it to my client's web server, inserts, updates, and deletes all failed. Updates failed with "401 - Unauthorized: ...
0
votes
0answers
264 views
WCF Data Services - Stored Procedures - Error when Viewing in browser
This is the error I receive:
The server encountered an error processing the request. The exception message is 'Exception has been thrown by the target of an invocation.'
Here is my setup and code:
I ...
0
votes
1answer
127 views
WCF Data Service expand issue
here is the quick setup:
desktop application (Windows forms application, running on XP, .NET 4.0) connected to WCF Data Service (using .NET 4.0, hosted on IIS 7.5)
3 tables: T1, T2, T3 (SQL Server ...
0
votes
0answers
158 views
WCF Data Service can't expose data resources from connected database tables after deployed in an IIS 7.5 server
I am learning WCF Data Service thus I am making use of the standard Northwind Database. The Northwind Database is managed by a SQL Server 2008 R2.
I have used all basic setups to build an ASP.NET web ...
0
votes
1answer
226 views
WCF Data Services: Mocking OperationContext
We would like to mock the OperationContext class for testing purposes. We are using 'Mock'. But OperationContext is a sealed class and cannot be mocked. Therefore we are trying to create a dummy ...