<?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: Using the Linq IQueryable Toolkit</title>
	<atom:link href="http://www.cmjackson.net/2010/02/10/using-the-linq-iqueryable-toolkit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cmjackson.net/2010/02/10/using-the-linq-iqueryable-toolkit/</link>
	<description>Web Design, Programming, Tutorials</description>
	<lastBuildDate>Tue, 13 Dec 2011 14:46:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Chris Jackson</title>
		<link>http://www.cmjackson.net/2010/02/10/using-the-linq-iqueryable-toolkit/comment-page-1/#comment-6800</link>
		<dc:creator>Chris Jackson</dc:creator>
		<pubDate>Tue, 26 Apr 2011 18:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.cmjackson.net/?p=385#comment-6800</guid>
		<description>@Kent
No, I ended up scrapping this idea and using a custom library that I wrote to access DB2.

It&#039;s not as nice as using a tool like Linq, but there is another option.  Look into SQL Linked Servers.  You can link an SQL server to DB2 and then connect and run queries through SQL.  This should allow you to use Linq with DB2.</description>
		<content:encoded><![CDATA[<p>@Kent<br />
No, I ended up scrapping this idea and using a custom library that I wrote to access DB2.</p>
<p>It&#8217;s not as nice as using a tool like Linq, but there is another option.  Look into SQL Linked Servers.  You can link an SQL server to DB2 and then connect and run queries through SQL.  This should allow you to use Linq with DB2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kent</title>
		<link>http://www.cmjackson.net/2010/02/10/using-the-linq-iqueryable-toolkit/comment-page-1/#comment-6006</link>
		<dc:creator>kent</dc:creator>
		<pubDate>Mon, 11 Apr 2011 05:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.cmjackson.net/?p=385#comment-6006</guid>
		<description>Hello! I see you are attemping to write the DB2 provider for IQToolkit from this article. Have you finish it?  I am looking for the provider for DB2 these days, but I can not find any information about it.</description>
		<content:encoded><![CDATA[<p>Hello! I see you are attemping to write the DB2 provider for IQToolkit from this article. Have you finish it?  I am looking for the provider for DB2 these days, but I can not find any information about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Jackson</title>
		<link>http://www.cmjackson.net/2010/02/10/using-the-linq-iqueryable-toolkit/comment-page-1/#comment-5909</link>
		<dc:creator>Chris Jackson</dc:creator>
		<pubDate>Wed, 06 Apr 2011 21:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.cmjackson.net/?p=385#comment-5909</guid>
		<description>@Jaggy
I&#039;m sorry to say, I&#039;ve not invested anymore time into this. I was using this for work and ended up going a different route.

In the Machine class above, there may be another attribute you need to put on the primary key field (PLCID) to signify that it is an autonumber.  Just by marking it as primary key it would think it must be required on inserts. In the case above, the PLCID would be a value I would want to set when inserting the record. 

If you&#039;re using MS Access, you should be able to use Linq to talk directly to it.  The Toolkit is really for creating providers to non-Microsoft databases (if one doesn&#039;t already exist) that can talk to Linq.

Check out C# when you get a chance.  I much prefer it to VB, although I&#039;ve spent many years with PHP so that may be why.</description>
		<content:encoded><![CDATA[<p>@Jaggy<br />
I&#8217;m sorry to say, I&#8217;ve not invested anymore time into this. I was using this for work and ended up going a different route.</p>
<p>In the Machine class above, there may be another attribute you need to put on the primary key field (PLCID) to signify that it is an autonumber.  Just by marking it as primary key it would think it must be required on inserts. In the case above, the PLCID would be a value I would want to set when inserting the record. </p>
<p>If you&#8217;re using MS Access, you should be able to use Linq to talk directly to it.  The Toolkit is really for creating providers to non-Microsoft databases (if one doesn&#8217;t already exist) that can talk to Linq.</p>
<p>Check out C# when you get a chance.  I much prefer it to VB, although I&#8217;ve spent many years with PHP so that may be why.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaggy</title>
		<link>http://www.cmjackson.net/2010/02/10/using-the-linq-iqueryable-toolkit/comment-page-1/#comment-4949</link>
		<dc:creator>Jaggy</dc:creator>
		<pubDate>Sat, 05 Mar 2011 10:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.cmjackson.net/?p=385#comment-4949</guid>
		<description>Hello! First af all thanks for great tutorial!

Is there a way to use IQToolkit to insert, update and delete?

I tried to make this on my own but experiencing some problems:
1) I made a code based on yours and i can make it insert in ms access db but, i have to provide a valid key otherwise - get error. Quiet a strange thing when thinking about insert - key must be provided automaticly. 
2) I cant delete from db - getting error somhere in depth of IQtoolkit. - i am not familiar with C# to figure it out by myself = ( 
3) I can`t use &quot;where&quot; in query like  Dim machs = From m In db.Machines  where m.PLCID=something - get something like &quot;not implemented exeption&quot;. I can query &quot;machs&quot; of course.

A have a feeling that i am doing something wrong but cant figure out what exactly. = )</description>
		<content:encoded><![CDATA[<p>Hello! First af all thanks for great tutorial!</p>
<p>Is there a way to use IQToolkit to insert, update and delete?</p>
<p>I tried to make this on my own but experiencing some problems:<br />
1) I made a code based on yours and i can make it insert in ms access db but, i have to provide a valid key otherwise &#8211; get error. Quiet a strange thing when thinking about insert &#8211; key must be provided automaticly.<br />
2) I cant delete from db &#8211; getting error somhere in depth of IQtoolkit. &#8211; i am not familiar with C# to figure it out by myself = (<br />
3) I can`t use &#8220;where&#8221; in query like  Dim machs = From m In db.Machines  where m.PLCID=something &#8211; get something like &#8220;not implemented exeption&#8221;. I can query &#8220;machs&#8221; of course.</p>
<p>A have a feeling that i am doing something wrong but cant figure out what exactly. = )</p>
]]></content:encoded>
	</item>
</channel>
</rss>

