<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Execute Stored Procedure With ADO.NET Data Services</title>
	<atom:link href="http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/</link>
	<description>Everything .Net</description>
	<lastBuildDate>Fri, 26 Feb 2010 15:39:54 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vinod Suri</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-16905</link>
		<dc:creator>Vinod Suri</dc:creator>
		<pubDate>Wed, 03 Feb 2010 07:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-16905</guid>
		<description>Hello,

I am new to ADO.NET Data Services.
I couldn&#039;t figure out how can i call a stored procedure using ado.net data services in which the result set comes from a query using a JOIN. I mean using JOIN in query and returning data from multiple tables.

Can u provide some example.

Thanks</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am new to ADO.NET Data Services.<br />
I couldn&#8217;t figure out how can i call a stored procedure using ado.net data services in which the result set comes from a query using a JOIN. I mean using JOIN in query and returning data from multiple tables.</p>
<p>Can u provide some example.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manindra</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-14317</link>
		<dc:creator>Manindra</dc:creator>
		<pubDate>Sat, 26 Dec 2009 09:44:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-14317</guid>
		<description>I create [WebGet] method in service .But i am not able to find it in my silverlight  application.Please help me how can i call this in
our silver light application.
Thanks--</description>
		<content:encoded><![CDATA[<p>I create [WebGet] method in service .But i am not able to find it in my silverlight  application.Please help me how can i call this in<br />
our silver light application.<br />
Thanks&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-13961</link>
		<dc:creator>Deepak</dc:creator>
		<pubDate>Mon, 21 Dec 2009 11:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-13961</guid>
		<description>Hi Josef. I&#039;m happy that you found a solution. Thanks for your comment.</description>
		<content:encoded><![CDATA[<p>Hi Josef. I&#8217;m happy that you found a solution. Thanks for your comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josef</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-13958</link>
		<dc:creator>Josef</dc:creator>
		<pubDate>Mon, 21 Dec 2009 10:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-13958</guid>
		<description>I&#039;have found a solution to make it running:

using System;
using System.Collections.Generic;
using System.Data.Services;
using System.Data.Objects; &lt;--- NEW ADDED
using System.Linq;
using System.ServiceModel.Web;
using System.Web;

Thanks for your helpful article. Examples with stored procedures (populated as webservices) are rare !
Josef</description>
		<content:encoded><![CDATA[<p>I&#8217;have found a solution to make it running:</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Data.Services;<br />
using System.Data.Objects; &lt;&#8212; NEW ADDED<br />
using System.Linq;<br />
using System.ServiceModel.Web;<br />
using System.Web;</p>
<p>Thanks for your helpful article. Examples with stored procedures (populated as webservices) are rare !<br />
Josef</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josef</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-13955</link>
		<dc:creator>Josef</dc:creator>
		<pubDate>Mon, 21 Dec 2009 09:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-13955</guid>
		<description>Following your example step by step I get the Error:
Type or Namespacename &quot;ObjectResult&quot; cannot be found.
Could you give me a hint ?
Thanks
Josef


[[WebGet]
public ObjectResult GetEmployeesByCity(string cityName)
{
  NorthwindEntities entities = new NorthwindEntities();
  return entities.GetEmployeesByCity(cityName);
}</description>
		<content:encoded><![CDATA[<p>Following your example step by step I get the Error:<br />
Type or Namespacename &#8220;ObjectResult&#8221; cannot be found.<br />
Could you give me a hint ?<br />
Thanks<br />
Josef</p>
<p>[[WebGet]<br />
public ObjectResult GetEmployeesByCity(string cityName)<br />
{<br />
  NorthwindEntities entities = new NorthwindEntities();<br />
  return entities.GetEmployeesByCity(cityName);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-9249</link>
		<dc:creator>Deepak</dc:creator>
		<pubDate>Fri, 11 Sep 2009 03:57:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-9249</guid>
		<description>Hi Jack,

I have not tried using them but I don&#039;t see any reason why you cannot. Busy with TechEd Australia these days otherwise I would have put an example together. Maybe for another post :)</description>
		<content:encoded><![CDATA[<p>Hi Jack,</p>
<p>I have not tried using them but I don&#8217;t see any reason why you cannot. Busy with TechEd Australia these days otherwise I would have put an example together. Maybe for another post :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.onedotnetway.com/execute-stored-procedure-with-adonet-data-services/comment-page-1/#comment-9193</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Wed, 09 Sep 2009 07:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.onedotnetway.com/?p=666#comment-9193</guid>
		<description>Can we still using $orderby, $top command when using stored procedure?</description>
		<content:encoded><![CDATA[<p>Can we still using $orderby, $top command when using stored procedure?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
