<?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 for The Gray Zone</title>
	<atom:link href="http://thegrayzone.co.uk/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thegrayzone.co.uk/blog</link>
	<description>A journey through geekdom...</description>
	<lastBuildDate>Wed, 15 Feb 2012 09:11:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Setting maximum object size in WCF by Prangya Panda</title>
		<link>http://thegrayzone.co.uk/blog/2010/06/setting-maximum-object-size-in-wcf/comment-page-1/#comment-4767</link>
		<dc:creator>Prangya Panda</dc:creator>
		<pubDate>Wed, 15 Feb 2012 09:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=248#comment-4767</guid>
		<description>hey it works!  
Thanks...</description>
		<content:encoded><![CDATA[<p>hey it works!<br />
Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stored Procedures with Entity Framework 4 and RIA Services by Danilo Chaves R</title>
		<link>http://thegrayzone.co.uk/blog/2010/10/stored-procedures-with-entity-framework-4-and-ria-services/comment-page-1/#comment-4355</link>
		<dc:creator>Danilo Chaves R</dc:creator>
		<pubDate>Thu, 05 Jan 2012 01:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=354#comment-4355</guid>
		<description>Nice post.

I have a sp that return a complex type (query) and have a output parameter.
create procedure sp @param1 int, ... @result string output
...
set @result = &#039;Execution error &#039; + + error_message()
...
select *
from tablainquery
where ...

I can return the query result doing something like this:

public List sp(int parameter1..., string r)
{
   ObjectParameter res = new ObjectParameter(&#039;result&#039;,typeof(string));
   SystobjectResult queryresult = this.ObjectContext.sp(parameter1,...,res);
r = res.value.ToString();
return queryresult.ToList();
}
But I don´t know how get the output parameter from the client because the r param is empty in the return function at client side.
Can you give me a guide to get the output parameter at client side.
Thank you.</description>
		<content:encoded><![CDATA[<p>Nice post.</p>
<p>I have a sp that return a complex type (query) and have a output parameter.<br />
create procedure sp @param1 int, &#8230; @result string output<br />
&#8230;<br />
set @result = &#8216;Execution error &#8216; + + error_message()<br />
&#8230;<br />
select *<br />
from tablainquery<br />
where &#8230;</p>
<p>I can return the query result doing something like this:</p>
<p>public List sp(int parameter1&#8230;, string r)<br />
{<br />
   ObjectParameter res = new ObjectParameter(&#8216;result&#8217;,typeof(string));<br />
   SystobjectResult queryresult = this.ObjectContext.sp(parameter1,&#8230;,res);<br />
r = res.value.ToString();<br />
return queryresult.ToList();<br />
}<br />
But I don´t know how get the output parameter from the client because the r param is empty in the return function at client side.<br />
Can you give me a guide to get the output parameter at client side.<br />
Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update Silverlight TextBox Binding Source on change by johnny</title>
		<link>http://thegrayzone.co.uk/blog/2010/10/update-silverlight-textbox-binding-source-on-change/comment-page-1/#comment-3859</link>
		<dc:creator>johnny</dc:creator>
		<pubDate>Sat, 12 Nov 2011 10:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=387#comment-3859</guid>
		<description>the text event not work for me

thanks Jeff. I am now using TextChanged and PasswordChanged instead.</description>
		<content:encoded><![CDATA[<p>the text event not work for me</p>
<p>thanks Jeff. I am now using TextChanged and PasswordChanged instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MantisBT on IIS 7 w/ SQL Server by Setting Up Mantisbt on IIS 7 and Sql Server &#124; Frédéric WAUQUIER</title>
		<link>http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/comment-page-1/#comment-3800</link>
		<dc:creator>Setting Up Mantisbt on IIS 7 and Sql Server &#124; Frédéric WAUQUIER</dc:creator>
		<pubDate>Wed, 02 Nov 2011 12:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=427#comment-3800</guid>
		<description>[...] Source : http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Source : http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamically alter EntityFramework ConnectionString in Domain Service by Carson</title>
		<link>http://thegrayzone.co.uk/blog/2010/06/dynamically-alter-entityframework-connectionstring-in-domain-service/comment-page-1/#comment-3437</link>
		<dc:creator>Carson</dc:creator>
		<pubDate>Fri, 23 Sep 2011 15:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=271#comment-3437</guid>
		<description>Very helpful. Thanks!</description>
		<content:encoded><![CDATA[<p>Very helpful. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MantisBT on IIS 7 w/ SQL Server by Bug Tracking and more &#8211; FogBugz &#171; Non Deterministic Coder</title>
		<link>http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/comment-page-1/#comment-2793</link>
		<dc:creator>Bug Tracking and more &#8211; FogBugz &#171; Non Deterministic Coder</dc:creator>
		<pubDate>Sun, 10 Jul 2011 12:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=427#comment-2793</guid>
		<description>[...] Mantis (recommended to me by a friend and the instructions on setup are here) [...]</description>
		<content:encoded><![CDATA[<p>[...] Mantis (recommended to me by a friend and the instructions on setup are here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update Silverlight TextBox Binding Source on change by dan</title>
		<link>http://thegrayzone.co.uk/blog/2010/10/update-silverlight-textbox-binding-source-on-change/comment-page-1/#comment-2689</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Wed, 29 Jun 2011 15:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=387#comment-2689</guid>
		<description>I am also having trouble with a firing converter resetting the cursors position.  Does anyone have a work around for this?</description>
		<content:encoded><![CDATA[<p>I am also having trouble with a firing converter resetting the cursors position.  Does anyone have a work around for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Returning string[] from RIA Domain Service by Oleg</title>
		<link>http://thegrayzone.co.uk/blog/2010/08/returning-string-from-ria-domain-service/comment-page-1/#comment-2646</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Thu, 23 Jun 2011 22:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=330#comment-2646</guid>
		<description>Thanks a lot!!!!!!!!!!!</description>
		<content:encoded><![CDATA[<p>Thanks a lot!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Querying SQL Server XML data by Braden Watson</title>
		<link>http://thegrayzone.co.uk/blog/2010/03/querying-sql-server-xml-data/comment-page-1/#comment-2498</link>
		<dc:creator>Braden Watson</dc:creator>
		<pubDate>Thu, 09 Jun 2011 18:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=24#comment-2498</guid>
		<description>Extraordinary! Your article carries a bunch viewers. How did you get these bloggers to check out your article I’m envious! I’m still learning all about posting information online. I’m going trend around on your website to acquire a better idea how to get more people. Thank you!</description>
		<content:encoded><![CDATA[<p>Extraordinary! Your article carries a bunch viewers. How did you get these bloggers to check out your article I’m envious! I’m still learning all about posting information online. I’m going trend around on your website to acquire a better idea how to get more people. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MantisBT on IIS 7 w/ SQL Server by Installation of Mantis on Windows, IIS &#38; MSSQL &#171; Manish Pansiniya&#8217;s Blog</title>
		<link>http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/comment-page-1/#comment-2169</link>
		<dc:creator>Installation of Mantis on Windows, IIS &#38; MSSQL &#171; Manish Pansiniya&#8217;s Blog</dc:creator>
		<pubDate>Tue, 03 May 2011 07:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://thegrayzone.co.uk/blog/?p=427#comment-2169</guid>
		<description>[...] http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/" rel="nofollow">http://thegrayzone.co.uk/blog/2011/03/setting-up-mantisbt-on-iis-7-w-sql-server/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

