active questions tagged ado.net-data-services - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:08:05Zhttp://stackoverflow.com/feeds/tag/ado.net-data-serviceshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803873/reusing-types-between-ado-net-data-services-and-wcf-service-in-silverlight0Reusing Types between ADO.NET Data Services and WCF service in Silverlightdevilmaster2009-11-26T14:10:32Z2009-11-26T14:10:32Z
<p>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 entity returned by the ADO.NET Data Service. The problem is that silverlight generates different types for the WCF service and for the ADO.NET service so passing the result from one to the other would require extra code. I would like to reuse the types generated for the ADO.NET Data Service proxy for the WCF serice proxy as well. </p>
http://stackoverflow.com/questions/1795682/ado-net-data-service-error-undefined-is-not-a-supported-http-method-in-ie80ADO .net Data Service error 'undefined' is not a supported HTTP method in IE8Kuroro2009-11-25T09:22:31Z2009-11-25T09:28:30Z
<p>I am using <a href="http://www.asp.net/ajaxlibrary/" rel="nofollow">ASP .net Ajax Library</a> and their CDN. </p>
<p>The code is like this</p>
<pre><code>var dataContext;
Sys.require([Sys.scripts.Templates, Sys.scripts.DataContext], loadComplete);
function loadComplete(features) {
//create a datacontext to adonet data service
dataContext = $create(Sys.Data.AdoNetDataContext, { serviceUri: '/DataService.svc' });
dataContext.fetchData("Customers",
{ $top: 1 },
null, // Defaults to overwrite changes
null, // Defaults to GET
function customerFetchSuccess(customers) {
// Do something with customers...
},
function customerFetchFailure(error) {
// Handle the error somehow...
});
}
function save()
{
dataContext.saveChanges();
}
</code></pre>
<p>Dataobject is loaded from ado .net dataservice.
Once edit is done, save function is called and dataobject will submit to ado .net dataservice. </p>
<p>This code work perfectly in FireFox 3.5, Chrome 4 but not in IE8.</p>
<p>Request content from IE8
--batch_7680-f3ba-6314
Content-Type: multipart/mixed;boundary=changeset_cb5c-b53d-95fe</p>
<p>--changeset_cb5c-b53d-95fe
Content-Type: application/http
Content-Transfer-Encoding: binary</p>
<p>MERGE <a href="http://www.localhost:5550/DataService.svc/Customer%2849" rel="nofollow">http://www.localhost:5550/DataService.svc/Customer%2849</a>) HTTP/1.1
Host: www.localhost:5550
Accept: application/json
Accept-Charset: utf-8
Content-Type: application/json;charset=utf-8</p>
<p>{"__metadata":{..}}
--changeset_cb5c-b53d-95fe
Content-Type: application/http
Content-Transfer-Encoding: binary</p>
<p><strong>undefined undefined HTTP/1.1</strong>
Host: www.localhost:5550
Accept: application/json
Accept-Charset: utf-8</p>
<p>IE8 create an extra line in request which cause error. Any help or suggestion is appreciated.</p>
http://stackoverflow.com/questions/1773695/returning-entities-extra-data-with-ado-net-data-services0Returning Entities + Extra Data with ADO.NET Data ServicesTim Ridgely2009-11-20T22:46:04Z2009-11-24T19:06:57Z
<p>Trying to figure out the best way to accomplish this. So I have a table of Stores with properties:</p>
<p>StoreID, Name, Latitude, Longitude, etc.</p>
<p>I'm using ADO.NET Data Services (Astoria) to create a web service that will show nearby stores given a radius and a coordinate. I made a Service Operation to take the params and return the results as an IQueryable. So far so good.</p>
<p>So right now I have something like:</p>
<pre><code>return context.Stores.Where(...distance calculation...);
</code></pre>
<p>This works great, but I also want to return the <strong>distance</strong> of each store from the given radius. I have the calculation covered, but how should I include the distance along with the store data? Should I make a class like StoreSearchResult with properties for the Store and the Distance?</p>
<p>If I was just using SQL, I could write a single database query that would return all of the data for the Store, along with a column for the distance. Something like:</p>
<pre><code>Select StoreID, Name, Latitude, Longitude, (calculation...) as Distance
from Store
where ...distance param...
</code></pre>
<p>So I'm looking for the best way to send back the original Store data + the distance calculation while still returning IQueryable. I'd prefer not to take an IEnumerable and use AsQueryable...I just feel like it should be possible to keep it "close" to the database query, and I'm probably just missing something.</p>
http://stackoverflow.com/questions/1757048/can-i-safely-use-the-threadstatic-attribute-in-ado-net-data-services1Can I (safely) use the ThreadStatic attribute in ADO.NET Data Services?Pwninstein2009-11-18T16:02:54Z2009-11-23T15:18:45Z
<p>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 ThreadStatic variable(s) won't be garbage collected after the request is completed and the thread dies. </p>
<p>If there's a better way to do what I'm trying to do, please let me know. This just seems like the simplest solution.</p>
<p>Any information would be very helpful, thanks!</p>
http://stackoverflow.com/questions/1347661/custom-authorization-in-ado-net-data-services1Custom authorization in ADO.NET Data ServicesAndrei Rinea2009-08-28T15:15:54Z2009-11-21T15:25:18Z
<p>I have an ADO.NET Data Service that exposes an Entity Framework data model (.edmx).</p>
<p>I need to allow / reject reads/writes to certain entities for certain users. I use Windows Authentication. All I could find is overriding the OnStartProcessingRequest :</p>
<pre><code>protected override void OnStartProcessingRequest(ProcessRequestArgs args)
{
base.OnStartProcessingRequest(args);
bool isBatch = args.IsBatchOperation;
System.Uri requestUri = args.RequestUri;
// parse uri and determine the entity and the operation
// (i.e.: select/update/delete/insert) will be determined by the HTTP verb
}
</code></pre>
<p>However I think this sucks and I am hoping for a better solution... Any ideas? :(</p>
http://stackoverflow.com/questions/1702684/where-can-i-find-information-on-creating-a-wcf-data-services-custom-data-service1Where can I find information on creating a WCF Data Services Custom Data Service Provider?GuyBehindtheGuy2009-11-09T18:00:08Z2009-11-19T18:18:19Z
<p>Our team is evaluating using WCF Data Services (formerly ADO.NET Data Services), and have determined we'll have to create a <a href="http://msdn.microsoft.com/en-us/library/dd672591%28VS.100%29.aspx" rel="nofollow">Custom Data Service Provider</a>. Where can we find a sample implementation of the two required interfaces: <a href="http://msdn.microsoft.com/en-us/library/system.data.services.providers.idataservicemetadataprovider%28VS.100%29.aspx" rel="nofollow">IDataServiceMetadataProvider</a> and <a href="http://msdn.microsoft.com/en-us/library/system.data.services.providers.idataservicequeryprovider%28VS.100%29.aspx" rel="nofollow">IDataServiceQueryProvider</a>?</p>
<p>EDIT: Note that a "WCF Custom Data <strong>Service</strong> Provider" is <em>not</em> the same as an "ADO.NET Custom Data Provider." </p>
<p>EDIT: We have begun reverse-engineering using Reflector, but I would still appreciate it if somebody had a sample they would be willing to post!</p>
http://stackoverflow.com/questions/1757152/ado-net-dataservices-with-prism0ADO.NET DataServices with PrismDiego2009-11-18T16:15:26Z2009-11-19T17:44:00Z
<p>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 Asyncronous call to be fired after the query. This will break ous Prism Pattern by what I can see.
Any ideas to get only the data of the query to use in Prism Pattern? Correct-me anyone if i'm wrong!</p>
http://stackoverflow.com/questions/1757418/what-is-purpose-of-updateobject-for-linq-to-rest1What is purpose of UpdateObject for Linq to REST?JustLoren2009-11-18T16:51:57Z2009-11-19T17:05:32Z
<p>When one is using ADO.NET Data Services and consuming it via the Linq to REST (formerly Project Astoria), it doesn't seem to be as intuitive as it could be.</p>
<p>Namely, with normal Linq to SQL, the DataContext monitors objects and tracks changes, so a simple <code>SubmitChanges()</code> call will actually submit all my changes.</p>
<p>But with Linq to REST, I have to call <code>UpdateObject(entity)</code> in order to notify the DataContext that the entity is dirty.</p>
<p>What's the point in this? Or am I missing something? Why not just have the autogenerated classes implement INotifyPropertyChanged and track changes like Linq to SQL?</p>
http://stackoverflow.com/questions/1691401/data-compression-for-ado-net-data-services0Data compression for ADO.NET data servicesIan Gregory2009-11-07T00:21:41Z2009-11-12T19:28:02Z
<p>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.</p>
<p>I'd like to compress the XML data on the wire to reduce payload and improve performance. Is this possible?</p>
http://stackoverflow.com/questions/1702717/ado-net-data-services-uploading-files0ADO.NET Data Services - Uploading filesMOZILLA2009-11-09T18:09:11Z2009-11-11T22:52:27Z
<p>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?</p>
<p>I haven't seen many examples of POST operation using ADO.NET data services available.</p>
http://stackoverflow.com/questions/1663609/how-do-i-implement-idataservicemetadataprovider-and-tell-my-data-service-to-use-t1How do I implement IDataServiceMetadataProvider and tell my Data Service to use that custom provider?Pwninstein2009-11-02T20:49:14Z2009-11-05T17:10:05Z
<p>There's no obvious entry point for implementing a custom provider for an ADO.NET Data Service using <code>IDataServiceMetadataProvider</code>, and then telling a Data Service to use that provider. Has anyone had any luck in this area? I've tried implementing this interface on my Data Source class, but none of my breakpoints are hit. There is also no (obvious) way to set the provider from the Data Service's <code>DataServiceConfiguration</code> parameter passed in to the <code>InitializeService</code> function.</p>
<p>Any help would be appreciated. Thanks!</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd672591%28VS.100%29.aspx" rel="nofollow">Data Services Providers (ADO.NET Data Services)</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.data.services.providers.idataservicemetadataprovider%5Fmembers%28VS.100%29.aspx" rel="nofollow"><code>IDataServiceMetadataProvider</code> Members</a></p>
http://stackoverflow.com/questions/1405830/data-not-deleted-from-db-when-removing-items-in-ria-services0data not deleted from DB when removing items in RIA ServicesMike Hodnick2009-09-10T15:02:16Z2009-11-03T21:31:42Z
<p>I have a Silverlight3 client consuming an unmodified/code-generated DomainService through RIA Services with a Linq-to-SQL back end. Is this the correct way to delete a row from the database?</p>
<pre><code>this.context.Albums.Remove(this.context.Albums[0]);
this.context.SubmitChanges();
</code></pre>
<p>The SubmitOperation comes back with no errors, but no rows are ever deleted from the database. Inserts work just fine. </p>
http://stackoverflow.com/questions/367617/does-linq-support-composable-or-queries1Does LINQ Support Composable "OR Queries"?ChrisHDog2008-12-15T06:46:32Z2009-11-03T20:02:56Z
<p>In another <a href="http://stackoverflow.com/questions/89193/does-linq-to-sql-support-composable-queries">posting: Does Linq-To-Sql support composable queries</a> there was discussion on how to compose/concat where clauses dynamically. This appears to be done with an "AND" (i.e. the first where clause and the second where clause are joined by an AND). What I am wondering is if there is a way to compose Linq queries with an OR.</p>
<p>Example:</p>
<pre><code>var people = from p in Person
where p.age < 18
select p
var otherPeople = from p in people
where p.firstName equals "Daniel"
select p
</code></pre>
<p>This gives people with a first name of "Daniel" and that are under 18. I'm looking for the syntax to join these to find people who have a first name of "Daniel" or are under 18.</p>
<p>Note: I am using ADO.net Data Services so I do not have .Contains() available to me.</p>
<p><strong>EDIT</strong>: The Union Suggestion (by Garry Shutler) is exactly what I am looking for funtionality-wise. I did run into two possible issues with it:</p>
<ol>
<li>It looks like it would make multiple database hits if I was to do a third condition (union seems to take an IEnumerable as its parameter) - I was hoping to build up multiple AND and OR statements in code and then execute one request.</li>
<li>Union is not supported by ADO.Net Data Services (very disappointing)</li>
</ol>
http://stackoverflow.com/questions/1273162/tunneling-http-put-through-post-in-ado-net-data-services0Tunneling HTTP PUT through POST in ADO.NET Data ServicesHans Malherbe2009-08-13T16:39:43Z2009-11-03T09:08:40Z
<p>The problem with J2ME clients consuming ADO.NET Data Services (Astoria) is that there is no support for the PUT and DELETE verbs.</p>
<p>Using the WCF REST Starter kit one can intercept a request to a WCF service using a new ServiceHost that exposes a property called <code>Interceptors</code> which lets you intercept requests and responses. Since Astoria is built on WCF we're home free, right? </p>
<p>Wrong. This technique wont work since Astoria uses another ServiceHost implementation that derives from IDataServiceHost. </p>
<p>As I see it the options are:</p>
<ol>
<li>Wait for a new Astoria release</li>
<li>Go raw WCF</li>
<li>Custom HTTP implementation on J2ME.</li>
</ol>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1331008/astoria-error-expected-an-absolute-well-formed-http-url-without-a-query-or-fra0Astoria Error - Expected an absolute, well formed http URL without a query or fragment.unknown (google)2009-08-25T21:09:16Z2009-11-02T20:53:24Z
<p>I'm trying out my ADO.NET Data Service for the first time by having the model create using Entity Framework. I am testing to see if the service works via a client by creating a simple console application. Here is the body of my Main method:</p>
<p><hr /></p>
<pre><code>MyEntities context = new MyEntities (new Uri("MyEntitiesDataService.svc", UriKind.Relative));
var query = (from c in context.EmployeeSet select c);
foreach (Employee emp in query)
{
Console.WriteLine("{0}", emp.FirstName);
}
</code></pre>
<p><hr /></p>
<p>When I reach the first line where the "context" is declared, my debugger jumps to the Reference.cs file where I have the Service Reference within the same project saying "".</p>
<p><hr /></p>
<pre><code>/// <summary>
/// Initialize a new MyEntities object.
/// </summary>
public MyEntities(global::System.Uri serviceRoot) :
base(serviceRoot)
</code></pre>
<p><hr /></p>
<p>Can anyone see what I'm doing wrong? Or what do you suggest I do to render by services via a console application? Next step will be Silverlight 3.0.</p>
http://stackoverflow.com/questions/1642063/ado-net-data-services-silverlight-security0ado.net data services silverlight securityunknown (yahoo)2009-10-29T07:13:12Z2009-11-02T18:06:54Z
<p>I have a application where the validation is done in the web server side (in the page). and the control is passed to the sl client. The SL client makes call to the ado.net data services for its query and wcf service for writing to the DB.
How should I handle the security of the ado.net data services?
I use
<a href="http://programmerpayback.com/2008/12/29/ria-security-102-using-aspnet-session-state-to-authenticate-web-service-calls/" rel="nofollow">http://programmerpayback.com/2008/12/29/ria-security-102-using-aspnet-session-state-to-authenticate-web-service-calls/</a></p>
<p>to handle the wcf security.</p>
<p>Can I set a session on the ado.net side when the first request is made and on further requests validate against this session (given that cookies are maintained across).</p>
http://stackoverflow.com/questions/274922/ado-net-data-service-non-net-consumers3ADO.NET Data Service -- non .NET consumersSwampyFox2008-11-08T16:42:47Z2009-11-02T18:01:00Z
<p>Has anyone come across an example of a non .Net consumer of an ADO.NET Data Service? I am on the second day of looking at what Astoria is and how it can be used. I am also trying to answer why would I use this instead of a web service?</p>
<p>After getting my examples running, I kind get the RESTful approach to getting data out the system. And, plugging it into a .net client is incredibly easy. But, then I wondered how a non-.NET consumer would go about it.</p>
<p>Any ideas (pointers) definitely appreciated...</p>
http://stackoverflow.com/questions/1652491/atompub-whats-your-recommendation0AtomPub - What's your recommendation?Simon Guest2009-10-30T21:43:09Z2009-11-01T12:43:36Z
<p>I'm looking to create a service (based on .NET Fx 3.5 or 4.0) that exposes data via Atom and enables AtomPub (so that I can update using Windows Live Writer).</p>
<p>There looks to be two options:</p>
<ul>
<li><p>Use ADO.NET Data Services. From what I can tell this is the easiest to get working, but requires EF (I'm using LinqToSQL - although I know there is a workaround) and mapping the types seems a little inflexible. e.g. I still don't know how to remove elements from the feed.</p></li>
<li><p>Do something custom with a WCF Syndication Feed. This looks like the most flexible approach, but is of course custom, and will require more coding.</p></li>
</ul>
<p>I'm interested in opinions from people that have implemented AtomPub in their own applications. Which approach did you use? (or did you do something different?)</p>
<p>Thanks,
-Simon </p>
http://stackoverflow.com/questions/1547872/what-is-the-difference-between-writereplace-writemerge-in-ado-net-data-service1What is the difference between writereplace & writeMerge in Ado .net data service?Kuroro2009-10-10T12:51:45Z2009-10-30T17:18:15Z
<p>I am configing ado.net dataservice in </p>
<pre><code> public static void InitializeService(IDataServiceConfiguration config)
{
// config.UseVerboseErrors = true;
// TODO: set rules to indicate which entity sets and service operations are visible, updatable, etc.
// Examples:
config.SetEntitySetAccessRule("User", EntitySetRights.WriteMerge);
config.SetEntitySetAccessRule("User", EntitySetRights.WriteReplace);
}
</code></pre>
<p>I have read this <a href="http://msdn.microsoft.com/en-us/library/system.data.services.entitysetrights.aspx" rel="nofollow">link text</a></p>
<p>but I can't identify the difference between EntitySetRights.WriteMerge and EntitySetRights.WriteReplace</p>
<p>I got my own answer from <a href="http://msdn.microsoft.com/en-us/library/cc907912.aspx" rel="nofollow">link text</a></p>
<p>WriteMerge:
In the case of merge-based updates, the payload needs to be an entity and only needs to contain the properties that are being modified. <strong><em>If a property is not included, the value that is currently present in the server will be preserved</em></strong>. Example 14 shows the payload used to update the category that was inserted in the previous example.</p>
<p>WriteReplace:
In the case of replace-based updates, the payload needs to be an entity and should contain all the properties of the entity (not including navigation properties). <strong><em>If a property is not included, the value is reset on the server to the default value for the property</em></strong>. This behavior for PUT requests maps to that described in the AtomPub RFC 5023. Example 13 shows the payload used to update the category that was inserted in the previous insert example. Since not all the properties are included in the payload, those not specified will be reset to their default values by the data service.</p>
http://stackoverflow.com/questions/1441513/hitting-a-ado-net-data-services-from-wpf-client-forms-authentication1Hitting a ADO.NET Data Services from WPF client, forms authenticationSoulhuntre2009-09-17T21:52:59Z2009-10-27T22:00:28Z
<p>Hey all!</p>
<p>There are a number of questiosn on StackOverflow that ALMOST hit this topic head on, but they are either for other technologies, reference obsolets information or don;t supply an answer that I can suss out. So pardon the almost duplication :)</p>
<p>I have a working ADO.NET Data Service, and a WPF client that hits it. Now that they are working fine I want to add authentication / security to the system. My understanding of the steps so far is...</p>
<ol>
<li>Turn on forms authentication and configure it on the server (I have an existing asp.net membership service DB for other aspects of this app, so that isnt a problem) so that it is required for the service URL</li>
<li>In WCF apply for and recieve a forms authentication "ticket" as part of a login routine</li>
<li>Add that "ticket" to the headers of the ADO.NET service calls in WPF</li>
<li>Profit!</li>
</ol>
<p>All well and good - but does anyone have a line on a soup to nuts code sample, using the modern releases of these technologies?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1632316/can-i-use-ado-net-data-services-with-a-linq-to-dataset-data-source0Can I use ADO.NET Data Services with a LINQ-to-DataSet data source?GuyBehindtheGuy2009-10-27T17:12:22Z2009-10-27T17:16:22Z
<p>We have an existing application that relies heavily on stored procedures and untyped DataSets. I'd like to maintain that flexibility, but leverage the REST capabilities of ADO.NET Data Services. However, when I attempt to use the following code to expose the DataSet to ADO.NET Data Services:</p>
<pre><code>namespace NewTechnologyDemo {
public class MyDataSource {
public IQueryable<DataRow> TheDataSet {
get {
using (SqlConnection connection = new SqlConnection("server=MySQLServer;integrated security=sspi;database=MyDatabase")) {
using (SqlCommand command = new SqlCommand("select * from Orders", connection)) {
SqlDataAdapter adapter = new SqlDataAdapter(command);
DataSet ds = new DataSet();
adapter.Fill(ds);
return ds.Tables[0].AsEnumerable().AsQueryable();
}
}
}
}
}
}
</code></pre>
<p>I get the error:</p>
<pre><code>The server encountered an error processing the request. The exception message is 'On
data context type 'MyDataSource', there is a top IQueryable property 'TheDataSet' whose
element type is not an entity type. Make sure that the IQueryable property is of entity
type or specify the IgnoreProperties attribute on the data context type to ignore this
property.'.
</code></pre>
<p>I saw <a href="http://stackoverflow.com/questions/618027/ado-net-data-services-with-linq-to-sql">here</a> that ADO.NET Data Services wants me to decorate the object with a <a href="http://msdn.microsoft.com/en-us/library/system.data.services.common.dataservicekeyattribute.aspx" rel="nofollow">DataServiceKey</a> attribute, but I don't think there's anyway for me to do that.</p>
<p>Any ideas on how I could get this working? I feel like it should be possible...</p>
http://stackoverflow.com/questions/1603726/ado-net-data-service-operation-array-of-integers-as-a-parameter1ADO.Net Data Service Operation: Array of integers as a parametergrimus2009-10-21T21:18:25Z2009-10-22T00:09:41Z
<p>This question is a bit of a two parter for .Net data services. This is the function signature I'm trying to achieve:</p>
<pre><code>/// <summary>
/// Returns Descriptions for any asset in the given assetIDs.
/// </summary>
[WebGet]
public IQueryable<Description> FindDescriptionForAssets(int[] assetIDs);
</code></pre>
<ol>
<li><p>I'm trying to create a custom service operation on a ADO.Net Data Service that takes an array of integers as a parameter. My understanding is that ADO.Net Data Services can't accept an array (or List or other enumerable) as a parameter. Is this true? Is there any way around it?</p></li>
<li><p>It looks using arrays like this may be achievable by using the .Net RIA Services's DomainService. However, I haven't been able to find any examples demonstrating it. Can anyone confirm this?</p></li>
</ol>
http://stackoverflow.com/questions/1578838/ado-net-data-services-querying-against-linq-to-nhibernate-could-not-understand0ADO.NET Data Services querying against LINQ to NHibernate: "Could not understand: (IIF(([1003] = null), null, Convert([1003].Contains("name"))) = null)"pnschofield2009-10-16T15:33:27Z2009-10-16T15:33:27Z
<p>I'm trying to perform a simple query using ADO.NET Data Services running against LINQ to NHibernate. I can execute this query </p>
<p><code>var query = _context.CreateQuery("FileDTOs")<br />
.Where(file => file.Name.Contains("name"));</p>
<p>I can run a similar query directly against LINQ to NHibernate without issues, but when I pass the same query through Data Services, I get this error message:</p>
<p><code>
Not Implemented
Could not understand: (IIF(([1003] = null), null, Convert([1003].Contains("name"))) = null)
System.NotSupportedException
</code>
<code> at NHibernate.Linq.Visitors.BinaryCriterionVisitor.GetBinaryCriteria(ICriteria rootCriteria, ISession session, BinaryExpression expr, ComparePropToValue comparePropToValue, ComparePropToProp comparePropToProp, CompareValueToCriteria compareValueToCriteria, ComparePropToCriteria comparePropToCriteria)
<br />
at NHibernate.Linq.Visitors.WhereArgumentsVisitor.VisitBinaryCriterionExpression(BinaryExpression expr)
<br />
at NHibernate.Linq.Visitors.WhereArgumentsVisitor.VisitBinary(BinaryExpression expr)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.VisitConditional(ConditionalExpression c)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.VisitLambda(LambdaExpression lambda)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.WhereArgumentsVisitor.VisitUnary(UnaryExpression expr)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.WhereArgumentsVisitor.GetCriterion(ICriteria rootCriteria, ISession session, Expression expression)
<br />
at NHibernate.Linq.Visitors.RootVisitor.HandleWhereCall(MethodCallExpression call)
<br />
at NHibernate.Linq.Visitors.RootVisitor.VisitMethodCall(MethodCallExpression expr)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.RootVisitor.VisitMethodCall(MethodCallExpression expr)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.RootVisitor.VisitMethodCall(MethodCallExpression expr)
<br />
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
<br />
at NHibernate.Linq.Visitors.NHibernateQueryTranslator.Translate(Expression expression, QueryOptions queryOptions)
<br />
at NHibernate.Linq.NHibernateQueryProvider.TranslateExpression(Expression expression)
<br />
at NHibernate.Linq.NHibernateQueryProvider.Execute(Expression expression)
<br />
at NHibernate.Linq.Query`1.System.Collections.IEnumerable.GetEnumerator()
<br />
at System.Data.Services.WebUtil.GetRequestEnumerator(IEnumerable enumerable) </p>
<p>at System.Data.Services.Client.DataServiceQuery<code>1.Execute()<br />
at System.Data.Services.Client.DataServiceQuery</code>1.GetEnumerator()<br />
at System.Linq.Enumerable.FirstOrDefault1 source)<br />
at System.Data.Services.Client.DataServiceQueryProvider.ReturnSingleton[TElement](Expression expression)<br />
at System.Data.Services.Client.DataServiceQueryProvider.Execute[TResult](Expression expression)<br />
at System.Linq.Queryable.FirstOrDefault[TSource](IQueryable</code>1 source">TSource<br />
at QueryServiceUnitTests.QueryServiceIntegrationTests.shoul_serve_FileDTOs_when_searching_by_name<br />
</code></p>
<p>Is there something I need to do to get this query to work correctly, or are there any known workarounds?</p>
http://stackoverflow.com/questions/387895/ado-net-dataservice-passing-parameter-to-webinvoke-method1ADO.NET DataService: Passing parameter to [WebInvoke] Methodmichaelf19772008-12-23T01:05:01Z2009-10-15T11:17:33Z
<p>Consider following example :</p>
<pre><code>public class SomeBusinessLayerService : DataService<MyEntityContainer>
{
[WebInvoke]
void DoSomething(string someParam)
{
}
}
</code></pre>
<p>I can not find example or any help on how can I pass parameter to the function!
Using WebClient (or goofinfg around with fiddler) I can trigger the function call, but no matter what I try the parameter someParam is always null
What's worse - if I change the type to int - all my attempts end in following error:</p>
<pre><code><?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code></code>
<message xml:lang="en-US">Bad Request - Error in query syntax.</message>
</error>
</code></pre>
<p>Can anyone please help with working example of POST content on how I can call it ?</p>
<p>NOTE: This is DataService, and not WCF service. I can get it working with WCF service same method without any problems. </p>
<p>EDIT: Also I need example of POST and not embedding parameter in URI because URI has size limit and requirement to sanitize the string.</p>
http://stackoverflow.com/questions/1559302/consuming-service-operations-of-an-ado-net-data-service-from-a-net-client2Consuming Service Operations of an ADO.NET Data Service from a .NET Clientpancake2009-10-13T10:10:41Z2009-10-14T19:24:43Z
<p>I am trying to build an ADO.NET Data Service with lots of entities and a few service operations. On one side I created a ASP.NET Web Application, in which an ADO.NET Entity Data Model and an ADO.NET Data Service are located. On the other side I created a second ASP.NET Web Application that has a Service Reference to the Data Service.</p>
<p>Entities are coming through very well, I can use LINQ to retrieve the data I want:</p>
<pre><code>TestEntities entities = new TestEntities(
new Uri("http://localhost/service/service.svc"));
var query = from customer in entities.Customers
where customer.ID == 1234
select customer;
query.ToList();
</code></pre>
<p>This works. However, retrieving information through Service Operations completely eludes me.
Data Service-side code:</p>
<pre><code>public static void InitializeService(IDataServiceConfiguration config) {
config.SetEntitySetAccessRule("*", EntitySetRights.All);
config.SetServiceOperationAccessRule("*", ServiceOperationRights.All);
}
[WebInvoke]
public IQueryable<Customer> GetSomeCustomers() {
TestEntities entities = new TestEntities();
return from customer in entities.Customers
where customer.ID > 0 && customer.ID < 20
select customer;
}
</code></pre>
<p>When I added the Service reference to my client project, Visual Studio didn't pick up on any Service Operations. I know I can access them through constructed URIs and the BeginExecute method of either the DataServiceContext object or the TestEntities object (in this case), or something like that, but that is not how I want it.</p>
<p>What I want is to use LINQ to go through the returned data of the Service Operation.
Is this possible? It should be, right?</p>
http://stackoverflow.com/questions/742719/deployment-of-ado-net-data-service6Deployment of ADO.NET Data Serviceunknown (google)2009-04-13T00:39:11Z2009-10-14T11:51:06Z
<p>What is the best way to secure ADO.NET data services? Has anyone used this in production, if yes what security options have you used?</p>
http://stackoverflow.com/questions/1460714/ado-net-service-update-error0ADO.NET Service update errorKentZhou2009-09-22T15:14:16Z2009-10-06T23:31:03Z
<p>I have a very simple exercise on ADO.NET Service: Put the list of Product in a list box, when selection changed in the list box, display UnitPrice and UnitInStock in two textboxes.
Then change the data in textboxes and save the changes.</p>
<p>Here is all code for at client side:</p>
<pre><code>namespace TestApp
{
public partial class Form1 : Form
{
NorthwindDataContext ctx = new NorthwindDataContext(new Uri("http://localhost:3540/Northwind.svc/"));
public Form1()
{
InitializeComponent();
var q = from p in ctx.Products
select p;
listBox1.DataSource = q.ToList();
listBox1.DisplayMember = "ProductName";
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
var p = listBox1.SelectedItem as Product;
textBox1.Text = p.UnitPrice.ToString();
textBox2.Text = p.UnitsInStock.ToString();
}
private void button1_Click(object sender, EventArgs e)
{
var p = listBox1.SelectedItem as Product;
p.UnitPrice = Decimal.Parse(textBox1.Text);
p.UnitsInStock = short.Parse(textBox2.Text);
try
{
//ctx.AttachTo("Products", p);
//ctx.BeginSaveChanges();
ctx.UpdateObject(p);
ctx.SaveChanges(SaveChangesOptions.None);
}
catch (Exception ex)
{
label3.Text = ex.Message;
}
}
}
}
</code></pre>
<p>The ADO.NET Service is fine and its permission set as:</p>
<pre><code> config.SetEntitySetAccessRule("*", EntitySetRights.All);
</code></pre>
<p>When I hit the save button, I got error message as:
ex.Message = "An error occurred while processing this request."</p>
<p>Not sure why. please help.</p>
http://stackoverflow.com/questions/1471894/when-to-use-wcf-and-when-to-use-ado-data-services-in-ajax-websites0When to use WCF and when to use ADO data services in ajax websites?Amr ElGarhy2009-09-24T14:02:51Z2009-10-06T21:20:07Z
<p>I am really confused about when to use WCF and when to use ADO data services in my website ajax calls.</p>
<p>I always make my javascript code call a webservice to get data from server "ajax".</p>
<p>But while reading in both WCF and ADO data service, i am not sure when to use each and when not use?, and if they replace each other in my case? or can live side by side?</p>
<p>Can anyone make me understand in points when to use which in ajax websites?</p>
http://stackoverflow.com/questions/1526691/what-should-i-know-about-working-with-ado-net-data-services-faq3What should I know about working with ADO.Net Data Services? (FAQ)Simon Steele2009-10-06T16:32:18Z2009-10-06T17:05:35Z
<p>I've been learning by doing with <a href="http://msdn.microsoft.com/en-us/data/bb931106.aspx" rel="nofollow">ADO.Net Data Services (Astoria)</a> for the last couple of months, and while I like the technology the learning has been a real trial. Information that you need to use them effectively is spread over MSDN documentation, articles, blog posts, support forums and of course StackOverflow. This question is a place for me to share some of my hard-won findings so that someone else can benefit. I also hope for other people to contribute their best practices and FAQs, and correct my misunderstandings!</p>
<p>For full disclosure, I've been using the framework with Linq to SQL just to make my life more complicated, so I hope the details in my answers are appropriate for Entity Framework too.</p>
<p>To start with below are some links I've found essential. I'll then put topic specific bits in the answers section.</p>
<h2>Useful Links</h2>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/data/bb931106.aspx" rel="nofollow">Data Services Home Page</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/cc907912.aspx" rel="nofollow">Using Data Services article on MSDN</a></li>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataservices/threads/" rel="nofollow">Data Services Support Forum</a></li>
<li><a href="http://blogs.msdn.com/astoriateam/default.aspx" rel="nofollow">Data Services Team Blog</a></li>
<li><a href="http://msdn.microsoft.com/en-us/magazine/dd569758.aspx" rel="nofollow">Tips For Using Silverlight 2 with ADO.NET Data Services</a></li>
</ul>
http://stackoverflow.com/questions/353288/ado-net-data-services-astoria-and-caching1ADO.NET Data Services 'Astoria' and CachingPaul2008-12-09T16:05:59Z2009-10-06T13:39:50Z
<p>Hello all,</p>
<p>I just started diving into ADO.NET Data Services for a project, and I quickly ran into a problem. At first I was amazed by the performance, but then I realized that the data was cached. My project relies on real-time data, and I'd love to use the ADO.NET Data Services REST query syntax (without needing to use WCF or SOAP), but without caching.</p>
<p>I saw on the ADO.NET Data Services introduction page (<a href="http://msdn.microsoft.com/en-us/library/cc907912.aspx" rel="nofollow">here</a>) that they do not yet have API support for managing the cache duration or anything of the like.</p>
<p>Anyone have any ideas of how to accomplish this, or turn off the cache?</p>
<p>Thanks, Paul</p>