<?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: Querying relationships with LinqtoCRM</title>
	<atom:link href="http://friism.com/querying-relationships-with-linqtocrm/feed" rel="self" type="application/rss+xml" />
	<link>http://friism.com/querying-relationships-with-linqtocrm</link>
	<description>a Michael Friis production</description>
	<lastBuildDate>Sun, 07 Mar 2010 19:42:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Brian</title>
		<link>http://friism.com/querying-relationships-with-linqtocrm/comment-page-1#comment-1405</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Wed, 03 Feb 2010 13:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.itu.dk/~friism/blog/?p=230#comment-1405</guid>
		<description>@brenden
Use the MetadataService, not CrmService
service.Url = “http://qsmcrm:5555/qsm/mscrmservices/2007/MetadataService.asmx”;</description>
		<content:encoded><![CDATA[<p>@brenden<br />
Use the MetadataService, not CrmService<br />
service.Url = “http://qsmcrm:5555/qsm/mscrmservices/2007/MetadataService.asmx”;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: friism</title>
		<link>http://friism.com/querying-relationships-with-linqtocrm/comment-page-1#comment-1247</link>
		<dc:creator>friism</dc:creator>
		<pubDate>Wed, 27 May 2009 10:10:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.itu.dk/~friism/blog/?p=230#comment-1247</guid>
		<description>Does the crmqueryprovider work if you don&#039;t use linqtocrm? I.e. can you do a standard query? Otherwise I haven&#039;t a clue.</description>
		<content:encoded><![CDATA[<p>Does the crmqueryprovider work if you don&#8217;t use linqtocrm? I.e. can you do a standard query? Otherwise I haven&#8217;t a clue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brenden</title>
		<link>http://friism.com/querying-relationships-with-linqtocrm/comment-page-1#comment-1245</link>
		<dc:creator>brenden</dc:creator>
		<pubDate>Tue, 26 May 2009 22:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.itu.dk/~friism/blog/?p=230#comment-1245</guid>
		<description>I have an example below of code I have tried to use that is very similar to your demo.  It compiles and it authenticates but when the result returns I get a message &quot;Server was unable to process your request&quot;.

Any ideas at all?
  

 CrmAuthenticationToken token = new CrmAuthenticationToken();
            token.AuthenticationType = 0;
            token.OrganizationName = &quot;QSM&quot;;

            CrmService service = new CrmService();

            service.Url = &quot;http://qsmcrm:5555/qsm/mscrmservices/2007/CrmService.asmx&quot;;
            service.Credentials = new NetworkCredential(&quot;administrator&quot;, &quot;pass@word1&quot;, &quot;crm&quot;);
            
            ICrmService s = new  CrmWebService(service);
            CrmQueryProvider p = new CrmQueryProvider(s);

            var res = from c in p.Linq&lt;contact&gt;()
            select c.fullname;
            foreach (var i in res)
            {
                Response.Write(i);
            }</description>
		<content:encoded><![CDATA[<p>I have an example below of code I have tried to use that is very similar to your demo.  It compiles and it authenticates but when the result returns I get a message &#8220;Server was unable to process your request&#8221;.</p>
<p>Any ideas at all?</p>
<p> CrmAuthenticationToken token = new CrmAuthenticationToken();<br />
            token.AuthenticationType = 0;<br />
            token.OrganizationName = &#8220;QSM&#8221;;</p>
<p>            CrmService service = new CrmService();</p>
<p>            service.Url = &#8220;http://qsmcrm:5555/qsm/mscrmservices/2007/CrmService.asmx&#8221;;<br />
            service.Credentials = new NetworkCredential(&#8220;administrator&#8221;, &#8220;pass@word1&#8243;, &#8220;crm&#8221;);</p>
<p>            ICrmService s = new  CrmWebService(service);<br />
            CrmQueryProvider p = new CrmQueryProvider(s);</p>
<p>            var res = from c in p.Linq<contact>()<br />
            select c.fullname;<br />
            foreach (var i in res)<br />
            {<br />
                Response.Write(i);<br />
            }</contact></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randoom &#8211; LinqtoCRM competitor and new version</title>
		<link>http://friism.com/querying-relationships-with-linqtocrm/comment-page-1#comment-1176</link>
		<dc:creator>Randoom &#8211; LinqtoCRM competitor and new version</dc:creator>
		<pubDate>Sat, 07 Mar 2009 21:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.itu.dk/~friism/blog/?p=230#comment-1176</guid>
		<description>[...] and instead provide their own class generator/entity mapper (LinqtoCRM has one too, but only for generating many-to-many classes). This means you can&#8217;t mix and match Linq with traditional web service calls, and they had to [...]</description>
		<content:encoded><![CDATA[<p>[...] and instead provide their own class generator/entity mapper (LinqtoCRM has one too, but only for generating many-to-many classes). This means you can&#8217;t mix and match Linq with traditional web service calls, and they had to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: friism</title>
		<link>http://friism.com/querying-relationships-with-linqtocrm/comment-page-1#comment-1124</link>
		<dc:creator>friism</dc:creator>
		<pubDate>Sat, 20 Dec 2008 15:25:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.itu.dk/~friism/blog/?p=230#comment-1124</guid>
		<description>@Guil, custom entities are supported out of the box, the example just uses a standard entity for common frame of reference.</description>
		<content:encoded><![CDATA[<p>@Guil, custom entities are supported out of the box, the example just uses a standard entity for common frame of reference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guil</title>
		<link>http://friism.com/querying-relationships-with-linqtocrm/comment-page-1#comment-1123</link>
		<dc:creator>Guil</dc:creator>
		<pubDate>Fri, 19 Dec 2008 09:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.itu.dk/~friism/blog/?p=230#comment-1123</guid>
		<description>Good stuff :)

Do you plan to add support to custom entities?

Cheers,</description>
		<content:encoded><![CDATA[<p>Good stuff <img src='http://friism.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Do you plan to add support to custom entities?</p>
<p>Cheers,</p>
]]></content:encoded>
	</item>
</channel>
</rss>
