<?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>LLBLGening &#187; Code Snippets</title>
	<atom:link href="http://www.llblgening.com/archive/category/code-snippets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.llblgening.com</link>
	<description>My 2cents on LLBLGen world</description>
	<lastBuildDate>Thu, 01 Oct 2009 10:33:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PrefetchPaths in Depth</title>
		<link>http://www.llblgening.com/archive/2009/10/prefetchpaths-in-depth/</link>
		<comments>http://www.llblgening.com/archive/2009/10/prefetchpaths-in-depth/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 09:00:20 +0000</pubDate>
		<dc:creator>David Elizondo</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[adapter]]></category>
		<category><![CDATA[linq2llbl]]></category>
		<category><![CDATA[prefetchPaths]]></category>

		<guid isPermaLink="false">http://www.llblgening.com/?p=152</guid>
		<description><![CDATA[LLBLGen	Pro has the ability to fetch related entities together with a set of entities, e.g. fetch a set of Customer entities and also their Order entities. This feature is calledÂ Prefetch Paths.
In this article I will explain how to use LLBLGen Pro PrefetchPaths. I divided its use in Cases so it would be easy to understand [...]]]></description>
		<wfw:commentRss>http://www.llblgening.com/archive/2009/10/prefetchpaths-in-depth/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>LLBLGen Pro Expressions and Scalar Queries</title>
		<link>http://www.llblgening.com/archive/2009/09/llblgen-pro-expressions-and-scalar-queries/</link>
		<comments>http://www.llblgening.com/archive/2009/09/llblgen-pro-expressions-and-scalar-queries/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 07:56:29 +0000</pubDate>
		<dc:creator>David Elizondo</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[adapter]]></category>
		<category><![CDATA[dynamiclist]]></category>
		<category><![CDATA[expressions]]></category>
		<category><![CDATA[linq2llbl]]></category>

		<guid isPermaLink="false">http://www.llblgening.com/?p=131</guid>
		<description><![CDATA[Sometimes you need to reproduce monster queries in your code for display specific data or to serve data to reports. In general I prefer to say that &#8220;I need certain set of data, so How can I fetch it&#8221; instead of &#8220;How can I write this query into LLBLGen Pro&#8221;. Anyway, sometimes we used to [...]]]></description>
		<wfw:commentRss>http://www.llblgening.com/archive/2009/09/llblgen-pro-expressions-and-scalar-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add custom calculated fields to LLBLGen objects</title>
		<link>http://www.llblgening.com/archive/2009/09/add-custom-calculated-fields-to-llblgen-objects/</link>
		<comments>http://www.llblgening.com/archive/2009/09/add-custom-calculated-fields-to-llblgen-objects/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 05:15:33 +0000</pubDate>
		<dc:creator>David Elizondo</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[adapter]]></category>
		<category><![CDATA[typedlist]]></category>
		<category><![CDATA[typedview]]></category>

		<guid isPermaLink="false">http://www.llblgening.com/?p=126</guid>
		<description><![CDATA[Did you ever wanted to add custom fields to your LLBLGen objects based on some especial expression? Is such expression impossible to build in memory so you want it be query based? Well we will address it a little bit today.
Topics on this post:

Adding custom calculated field to TypedLists
Adding custom calculated field to TypedViews

When I [...]]]></description>
		<wfw:commentRss>http://www.llblgening.com/archive/2009/09/add-custom-calculated-fields-to-llblgen-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UpdateEntitiesDirectly with ORDER-BY and LIMIT (MySql specific)</title>
		<link>http://www.llblgening.com/archive/2009/08/updateentitiesdirectly-with-order-by-and-limit-mysql-specific/</link>
		<comments>http://www.llblgening.com/archive/2009/08/updateentitiesdirectly-with-order-by-and-limit-mysql-specific/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 11:05:01 +0000</pubDate>
		<dc:creator>David Elizondo</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[adapter]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.llblgening.com/?p=35</guid>
		<description><![CDATA[Have you ever needed to perform an update over an odered-limited subset in MySql?Â Do you use LLBLGenPro but you can&#8217;t figure out how to perform such update?
If the answer is yes, then keep reading. As no all databases supports such update syntaxis, LLBLGen don&#8217;t have this built-in. In this example I&#8217;ll try to explain (briefly) [...]]]></description>
		<wfw:commentRss>http://www.llblgening.com/archive/2009/08/updateentitiesdirectly-with-order-by-and-limit-mysql-specific/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
