<?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>Demystifying The Code &#187; Entity Framework</title>
	<atom:link href="http://www.robbagby.com/category/entity-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robbagby.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 27 Oct 2011 07:46:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Entity Framework Modeling: Select Stored Procedures</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-modeling-select-stored-procedures/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-modeling-select-stored-procedures/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 21:31:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-modeling-select-stored-procedures/</guid>
		<description><![CDATA[<p>In <a href="http://www.robbagby.com/entity-framework/entity-framework-modeling-action-stored-procedures/" target="_blank">my last post</a>, I illustrated how to map action stored procedures (insert, update, delete) to entities.&#160; In this post, I will illustrate how you can import select stored procedures and map the results to entities.&#160; </p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-modeling-select-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Entity Framework Modeling: Action Stored Procedures</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-modeling-action-stored-procedures/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-modeling-action-stored-procedures/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 03:29:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-modeling-action-stored-procedures/</guid>
		<description><![CDATA[<p>One of the biggest concerns I hear when discussing the Entity Framework is that of security.&#160; People are initially impressed and excited about the ease of developing a conceptual layer.&#160; Thanks to the magic of the Entity Framework and object services, you have an object layer that you can interact with that is mapped to your database.&#160; The excitement, however, wears off when people figure out that the default behavior for the action queries (insert, update and delete), along with selects is to generate dynamic SQL.&#160; In my humble opinion, this is a viable concern.&#160; In this post, I will discuss the security concerns with this default behavior and illustrate how you can map stored procedures to the actions.</p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-modeling-action-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Entity Framework Modeling: Table Per Hierarchy Inheritance</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-hierarchy-inheritance/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-hierarchy-inheritance/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 00:56:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-hierarchy-inheritance/</guid>
		<description><![CDATA[<p><a href="http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/" target="_blank">In a previous post</a>, I illustrated how you can implement table-per-type inheritance in your model.&#160; You use table-per-type if your data model splits information for different logical things between tables that have 1:1 relationships.&#160; Some data models store multiple logical things in one table and use a discriminator column to advertise what kind of thing it is (please excuse the use of the word ‘thing’ – all of the good words like entity and type have alternate meanings that could cause confusion).&#160; With data models such as these, you can implement table-per-hierarchy inheritance.&#160; With table-per-hierarchy, you can model the same type of inheritance between entities as in table-per-type.&#160; The difference is that all of the entities are sourced from a single table, with the discriminator column being used as the differentiator.</p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-hierarchy-inheritance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Entity Framework Modeling: Entity Splitting Part II (adding inheritance)</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting-part-ii-adding-inheritance/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting-part-ii-adding-inheritance/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:09:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting-part-ii-adding-inheritance/</guid>
		<description><![CDATA[<p><a href="http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting/" target="_blank">In Entity Splitting Part I</a>, I illustrated how you could map multiple tables to a single entity.&#160; <a href="http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/" target="_blank">In the post previous to that</a>, I illustrated how you could build a completely different conceptual layer for the same model by implementing table-per-type inheritance.&#160; These are 2 completely different modeling scenarios.&#160; Entity Splitting results in a much simpler model, while table-per-type results in a more flexible model where you are able to cast between types and take full advantage of all of the benefits of inheritance.&#160; In this post, I want to illustrate that this is not necessarily an either-or decision.&#160; You can mix and match if it meets the need of your application.</p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting-part-ii-adding-inheritance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Entity Framework Modeling : Entity Splitting</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 22:29:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting/</guid>
		<description><![CDATA[<p>Entity Splitting involves mapping a single entity in the conceptual layer to multiple tables in the store.&#160; To put that into English, suppose that you have a normalized data structure.&#160; Within this structure, you have a table that stores “People” and additional tables that store information about specific kinds of people like “Students”, “Business Students”, “Instructors” and “Admins” (see below).&#160; In this post, I will illustrate how to implement Entity Splitting in the Entity Framework.</p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-modeling-entity-splitting/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Entity Framework Series Index</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-series-index/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-series-index/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 05:55:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Index]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-series-index/</guid>
		<description><![CDATA[<p>I am in the process of doing a brief series of blog posts and screencasts on the ADO.NET Entity Framework.&#160; This page will serve as an index.&#160; I will keep it up to date.&#160; </p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-series-index/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Entity Framework Modeling: Table Per Type Inheritance</title>
		<link>http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/</link>
		<comments>http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 21:44:00 +0000</pubDate>
		<dc:creator>RobBagby</dc:creator>
				<category><![CDATA[Entity Framework]]></category>

		<guid isPermaLink="false">http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/</guid>
		<description><![CDATA[<p>One of the beauties of the Entity Framework is that we are able to model rich conceptual layers that meet the needs of our applications.&#160; Another way of putting this is that we are able to create application-centric views of our data stores.&#160; This conceptual layer may look similar or drastically different from how the underlying data is stored.&#160; Further, we can add in application concepts such as inheritance.&#160; A table-per-type model is a way to model inheritance where each entity is mapped to a distinct table in the store.&#160; Each table contains all of the properties for the entity, as well as a key that maps ultimately to the root table / entity.</p>]]></description>
		<wfw:commentRss>http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
