<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>codemeit &#187; LINQ</title>
	<atom:link href="http://www.codemeit.com/tag/linq/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codemeit.com</link>
	<description>programming, software &#38; problem solving</description>
	<lastBuildDate>Mon, 19 Sep 2011 08:55:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How does LINQ to SQL concurrency detect conflicts</title>
		<link>http://www.codemeit.com/linq/how-does-linq-to-sql-concurrency-detect-conflicts.html</link>
		<comments>http://www.codemeit.com/linq/how-does-linq-to-sql-concurrency-detect-conflicts.html#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:22:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LINQ]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.codemeit.com/?p=205</guid>
		<description><![CDATA[LINQ to SQL utlises optimistic concurrency control (OCC) to determine the conflicts. OCC compares the loaded record to existing record before performing an update operation on the row so that the underlying conflicts could be detected. The followings are steps to replicate the scenario, Table Fruit Id Name UnitPrice Description 1 Apple 2.5 very long [...]]]></description>
		<wfw:commentRss>http://www.codemeit.com/linq/how-does-linq-to-sql-concurrency-detect-conflicts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ InsertOnSubmit, DeleteOnSubmit and SubmitChanges not working</title>
		<link>http://www.codemeit.com/linq/linq-insertonsubmit-deleteonsubmit-and-submitchanges-not-working.html</link>
		<comments>http://www.codemeit.com/linq/linq-insertonsubmit-deleteonsubmit-and-submitchanges-not-working.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 10:08:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LINQ]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.codemeit.com/?p=198</guid>
		<description><![CDATA[I had the same problem with SQLExpress database file. In one word, I looked at the records from the wrong database. There were actually two versions of the database file. The mdf file gets copied over to bin\debug\data folder e.g. bin\debug\data\test.mdf after compilation, but I verify the data against the one within solution. This likely [...]]]></description>
		<wfw:commentRss>http://www.codemeit.com/linq/linq-insertonsubmit-deleteonsubmit-and-submitchanges-not-working.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Separator Delimited ToString for Array, List, Dictionary, Generic IEnumerable</title>
		<link>http://www.codemeit.com/linq/c-array-delimited-tostring.html</link>
		<comments>http://www.codemeit.com/linq/c-array-delimited-tostring.html#comments</comments>
		<pubDate>Sun, 21 Sep 2008 03:03:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LINQ]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[C# Generic]]></category>
		<category><![CDATA[Extension Method]]></category>
		<category><![CDATA[Generic IEnumberable]]></category>

		<guid isPermaLink="false">http://www.codemeit.com/?p=81</guid>
		<description><![CDATA[Often programmers want to convert an array into one string with for example comma delimited. Traditionally, in C#, it can be achieved by int&#91;&#93; array = &#123;1,2,3&#125;; string delimited = string.Join&#40;",", array&#41;; Console.WriteLine&#40;delimited &#41; // output: &#34;1,2,3&#34; &#160; However, string.Join does not apply to any generic IEnumerable object. It would be so much easier if [...]]]></description>
		<wfw:commentRss>http://www.codemeit.com/linq/c-array-delimited-tostring.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>LINQ: Combine elements in nested collection</title>
		<link>http://www.codemeit.com/linq/linq-combine-elements-in-nested-collection.html</link>
		<comments>http://www.codemeit.com/linq/linq-combine-elements-in-nested-collection.html#comments</comments>
		<pubDate>Thu, 14 Feb 2008 06:21:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LINQ]]></category>
		<category><![CDATA[Array]]></category>

		<guid isPermaLink="false">http://www.codemeit.com/linq/linq-combine-elements-in-nested-collection.html</guid>
		<description><![CDATA[Simple script to combine elements within nested list (A list&#8217;s elements are lists) static void Main&#40;string&#91;&#93; args&#41; &#123; &#160; // initialize a list object with List&#60;string&#62; elements &#160; List&#60;List&#60;string&#62;&#62; nestedList = new List&#60;List&#60;string&#62;&#62;&#40;&#41;; &#160; // add an element to the main list object &#160; nestedList.Add&#40;new List&#40;&#41; &#123; "a", "b", "c" &#125;&#41;; &#160; // add another [...]]]></description>
		<wfw:commentRss>http://www.codemeit.com/linq/linq-combine-elements-in-nested-collection.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

