<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jammer.NET - Open Source C# Software Development Framework</title>
	<atom:link href="http://projectjammer.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://projectjammer.net</link>
	<description>Open Source C# Software Development Framework</description>
	<pubDate>Wed, 17 Oct 2007 23:48:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Code Generator-Friendly Database Naming Conventions</title>
		<link>http://projectjammer.net/2007/10/17/code-generator-database-naming-conventions/</link>
		<comments>http://projectjammer.net/2007/10/17/code-generator-database-naming-conventions/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 23:30:24 +0000</pubDate>
		<dc:creator>Randolph Cabral</dc:creator>
		
		<category><![CDATA[Business Layer]]></category>

		<category><![CDATA[Code Generator]]></category>

		<category><![CDATA[Entity (ORM) Layer]]></category>

		<category><![CDATA[Getting Started]]></category>

		<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://projectjammer.net/2007/10/17/code-generator-database-naming-conventions/</guid>
		<description><![CDATA[The Jammer.NET Code Generator is currently designed to read tables and stored procedures from a Microsoft SQL Server database and generate C# code files for the entity ORM layer and business layer.  Generating fully functional and error-free code with the code generator is a relatively easy thing to do as long as your database conforms [...]]]></description>
		<wfw:commentRss>http://projectjammer.net/2007/10/17/code-generator-database-naming-conventions/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/randolphcabral-128.jpg" medium="image">
			<media:title type="html">randolphcabral</media:title>
		</media:content>
	</item>
		<item>
		<title>Jammer.NET API Documentation</title>
		<link>http://projectjammer.net/2007/08/09/jammernet-documentation/</link>
		<comments>http://projectjammer.net/2007/08/09/jammernet-documentation/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 20:14:03 +0000</pubDate>
		<dc:creator>Randolph Cabral</dc:creator>
		
		<category><![CDATA[Documentation]]></category>

		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://projectjammer.net/2007/08/09/jammernet-documentation/</guid>
		<description><![CDATA[Our Sandcastle documentation for Jammer.NET is up!
Check it out at:
 http://jmr.bongeek.com/
Special thanks to Mohammed Mudassir Azeemi for his generousity in hosting our docs! He&#8217;s one of the finest .NET developers in the open source community!
Click here for more information about Microsoft&#8217;s Sandcastle project.
       ]]></description>
		<wfw:commentRss>http://projectjammer.net/2007/08/09/jammernet-documentation/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/randolphcabral-128.jpg" medium="image">
			<media:title type="html">randolphcabral</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Create a Two-way Object Binding for ASP.NET WebForms</title>
		<link>http://projectjammer.net/2007/08/08/how-to-create-a-two-way-object-binding-for-aspnet-webforms/</link>
		<comments>http://projectjammer.net/2007/08/08/how-to-create-a-two-way-object-binding-for-aspnet-webforms/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 20:00:30 +0000</pubDate>
		<dc:creator>Randolph Cabral</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[How-to]]></category>

		<category><![CDATA[Two-way Binding]]></category>

		<guid isPermaLink="false">http://projectjammer.net/2007/08/08/how-to-create-a-two-way-object-binding-for-aspnet-webforms/</guid>
		<description><![CDATA[One of the features we spent a lot of time implementing is the concept of two-way object binding in ASP.NET.  The idea was to create a closer analog to windows forms style development where objects are stateful and can be bound to HtmlControls and WebControls alike.  After many cycles, we finally iterated to a successful implementation [...]]]></description>
		<wfw:commentRss>http://projectjammer.net/2007/08/08/how-to-create-a-two-way-object-binding-for-aspnet-webforms/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/randolphcabral-128.jpg" medium="image">
			<media:title type="html">randolphcabral</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Persist Object State Over Postbacks in ASP.NET WebForms</title>
		<link>http://projectjammer.net/2007/08/07/how-to-persist-object-state-over-postbacks-in-aspnet-webforms/</link>
		<comments>http://projectjammer.net/2007/08/07/how-to-persist-object-state-over-postbacks-in-aspnet-webforms/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 21:34:52 +0000</pubDate>
		<dc:creator>Randolph Cabral</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Getting Started]]></category>

		<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://projectjammer.net/2007/08/07/how-to-persist-object-state-over-postbacks-in-aspnet-webforms/</guid>
		<description><![CDATA[The PersistState Attribute 
Persisting object state over postbacks in ASP.NET is a one line operation with Jammer.NET.  Meet the PersistState attribute.
[PersistState] protected Customer _customer = null;

It may not seem like much on the surface, but the result is truly empowering.  With that one line of code, the &#8220;_customer&#8221; object state is persisted in ViewState and restored on [...]]]></description>
		<wfw:commentRss>http://projectjammer.net/2007/08/07/how-to-persist-object-state-over-postbacks-in-aspnet-webforms/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/randolphcabral-128.jpg" medium="image">
			<media:title type="html">randolphcabral</media:title>
		</media:content>

		<media:content url="http://jmrnet.files.wordpress.com/2007/08/persistscope.gif" medium="image">
			<media:title type="html">PersistScope Values</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Create an Entity / Object-relational Mapping</title>
		<link>http://projectjammer.net/2007/08/04/how-to-create-an-entity-object-relational-mapping/</link>
		<comments>http://projectjammer.net/2007/08/04/how-to-create-an-entity-object-relational-mapping/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 19:57:03 +0000</pubDate>
		<dc:creator>Randolph Cabral</dc:creator>
		
		<category><![CDATA[Entity (ORM) Layer]]></category>

		<category><![CDATA[Getting Started]]></category>

		<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://projectjammer.net/2007/08/04/how-to-create-an-entity-object-relational-mapping/</guid>
		<description><![CDATA[Entities 
Jammer.NET entities contain all of the mapping metadata in-line with the C# source code.  We&#8217;ve found this implementation affords benefits that outweigh any incremental gains of keeping the mapping metadata in a separate file.  Typically, changes made to a database schema are significant enough to require changes to the C# application source anyway.  Let&#8217;s face it; how [...]]]></description>
		<wfw:commentRss>http://projectjammer.net/2007/08/04/how-to-create-an-entity-object-relational-mapping/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/randolphcabral-128.jpg" medium="image">
			<media:title type="html">randolphcabral</media:title>
		</media:content>

		<media:content url="http://jmrnet.files.wordpress.com/2007/08/gotodefinition.gif" medium="image">
			<media:title type="html">Go To Definition Context Menu</media:title>
		</media:content>
	</item>
	</channel>
</rss>