<?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>XOODBS for .NET</title>
	<atom:link href="http://www.xoodbs.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xoodbs.net</link>
	<description>eXpress Object Oriented Database System for .NET</description>
	<lastBuildDate>Mon, 04 Jan 2010 15:42:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>First release delayed</title>
		<link>http://www.xoodbs.net/archives/2009/10/23/first-release-delayed/</link>
		<comments>http://www.xoodbs.net/archives/2009/10/23/first-release-delayed/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 05:52:35 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Roadmap]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=824</guid>
		<description><![CDATA[Due to some improvements, the first release of the Core Model is delayed to 2010.]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2009/10/23/first-release-delayed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are interfaces evil or misused ?</title>
		<link>http://www.xoodbs.net/archives/2009/07/25/are-interfaces-evil-or-misused/</link>
		<comments>http://www.xoodbs.net/archives/2009/07/25/are-interfaces-evil-or-misused/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 19:30:00 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[C# and .NET]]></category>
		<category><![CDATA[abstract]]></category>
		<category><![CDATA[abstraction]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[CLR]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[complexity]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[factorization]]></category>
		<category><![CDATA[generic]]></category>
		<category><![CDATA[genericity]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[inheritance]]></category>
		<category><![CDATA[instance]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[interfaces]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[maintainability]]></category>
		<category><![CDATA[methods]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[multiple inheritance]]></category>
		<category><![CDATA[polymorphism]]></category>
		<category><![CDATA[reflexion]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=734</guid>
		<description><![CDATA[There are several considerations and practices concerning interfaces Some developers say that interfaces can be used as a replacement of multiple inheritance mechanisms, which cause complexity and ambiguity. But each feature must be implemented each time it is declared: this is not an inheritance, this is a wrapper to the description of a part of [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2009/07/25/are-interfaces-evil-or-misused/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design flaws of the singleton pattern in C#</title>
		<link>http://www.xoodbs.net/archives/2009/07/21/design-flaws-of-the-singleton-pattern-in-csharp/</link>
		<comments>http://www.xoodbs.net/archives/2009/07/21/design-flaws-of-the-singleton-pattern-in-csharp/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 09:00:31 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[C# and .NET]]></category>
		<category><![CDATA[abstract]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[constructors]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[factoring]]></category>
		<category><![CDATA[generic]]></category>
		<category><![CDATA[generics]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[instance]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[persistence]]></category>
		<category><![CDATA[serialization]]></category>
		<category><![CDATA[singleton]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[thread]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=622</guid>
		<description><![CDATA[The paradigm Consider this common singleton pattern implementation: public class Singleton { static private readonly object locker = new object(); static public Singleton Instance { get { lock ( locker ) { if ( _Instance == null ) _Instance = new Singleton(); return _Instance; } } } static private volatile Singleton _Instance; private Singleton() { [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2009/07/21/design-flaws-of-the-singleton-pattern-in-csharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Development status</title>
		<link>http://www.xoodbs.net/archives/2009/07/13/development-status/</link>
		<comments>http://www.xoodbs.net/archives/2009/07/13/development-status/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 23:30:20 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Roadmap]]></category>
		<category><![CDATA[container]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[remoting]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[threading]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=241</guid>
		<description><![CDATA[It was decided to merge the code into one single library whose the name is officially XOODBS that provides a Core Model (old XAM library) and an Entity Model (old XOODBS library). Time spent on the project is approximately one to two hours per day. The first release is expected by the end of this [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2009/07/13/development-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Persistence guidelines</title>
		<link>http://www.xoodbs.net/archives/2009/07/13/persistence-guidelines/</link>
		<comments>http://www.xoodbs.net/archives/2009/07/13/persistence-guidelines/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 23:15:54 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Entity Model]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[container]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[instance]]></category>
		<category><![CDATA[instances]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[persistence]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=238</guid>
		<description><![CDATA[The XOODBS goal is to provide a simple and powerful Persistence Framework that allows programmers : To define classes structure, To implement operations, To create, modify and delete instances, As they use the standard features of a .NET object language, And nothing else but select the type of a container and its location, as well [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2009/07/13/persistence-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New class ObjectContainer</title>
		<link>http://www.xoodbs.net/archives/2009/07/13/new-class-objectcontainer/</link>
		<comments>http://www.xoodbs.net/archives/2009/07/13/new-class-objectcontainer/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 23:00:00 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Core Model]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[container]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[generic]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=224</guid>
		<description><![CDATA[ObjectContainer is a generic class to implement the storage of serializable objects in a file system, an archive, a database or anything else. [Serializable] public class TestItem : IObjectWithID { public Guid ID { get; private set; } public string Name { get; set; } public TestItem() { ID = Guid.NewGuid(); Name = "Item Name"; [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2009/07/13/new-class-objectcontainer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Composition of the Entity Model</title>
		<link>http://www.xoodbs.net/archives/2008/11/26/composition-of-the-entity-model/</link>
		<comments>http://www.xoodbs.net/archives/2008/11/26/composition-of-the-entity-model/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 18:40:55 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Entity Model]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[collections]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[generic]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[processings]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=222</guid>
		<description><![CDATA[Lockable KeyID : Generic base class for IDs. Lockable : Base class for lockable and editable objects with rights management. Users : System users entity. Params : System parameters entity. Entity EntityProperty : Base class for entity properties. OrdinalProperty : Base class for ordinal entity properties. EntityItem : Base class for entity that contains properties [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2008/11/26/composition-of-the-entity-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Composition of the Core Model</title>
		<link>http://www.xoodbs.net/archives/2008/11/26/composition-of-the-core-model/</link>
		<comments>http://www.xoodbs.net/archives/2008/11/26/composition-of-the-core-model/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 01:09:33 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Core Model]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[encapsulation]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[exceptions]]></category>
		<category><![CDATA[generic]]></category>
		<category><![CDATA[remoting]]></category>
		<category><![CDATA[singleton]]></category>
		<category><![CDATA[thread]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=212</guid>
		<description><![CDATA[Common Tester : a simple unit testing launcher. Chronometer : time measurement functions. StringTool : strings functions. Localizer : strings localization. AppInfo : system, application and folders information. AppTool : system and application functions. ThreadManager : threads list manager. Files FolderTool : folders functions. FileTool : files functions. FolderLister : folder entries lister. FileLister : [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2008/11/26/composition-of-the-core-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example preview</title>
		<link>http://www.xoodbs.net/archives/2008/11/21/example-preview/</link>
		<comments>http://www.xoodbs.net/archives/2008/11/21/example-preview/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 09:00:00 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Entity Model]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[methods]]></category>
		<category><![CDATA[static]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=122</guid>
		<description><![CDATA[Here are drafts of a source code and a class diagram of what it should be about the usage of the database. //----------------------------------------------------------------------------- [Serializable] public class AlarmPeriodicity { public int PeriodType { get; set; }; public DateTime Value { get; set; }; } //----------------------------------------------------------------------------- [Serializable] public class AlarmPeriodicityProperty : EntityProperty &#60; AlarmPeriodicity &#62; { public [...]]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2008/11/21/example-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work in progress</title>
		<link>http://www.xoodbs.net/archives/2008/11/17/progress-of-work/</link>
		<comments>http://www.xoodbs.net/archives/2008/11/17/progress-of-work/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 09:00:00 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Roadmap]]></category>

		<guid isPermaLink="false">http://www.xoodbs.net/?p=32</guid>
		<description><![CDATA[Projects have been started on May 2007 and the progress of the developments are: 80% for the Code Model: 1st release is scheduled for late 2009. 20% for the Entity Model: 1st release is scheduled for 2010 to 2012.]]></description>
		<wfw:commentRss>http://www.xoodbs.net/archives/2008/11/17/progress-of-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
