Click here to Skip to main content
15,896,207 members
Articles / Programming Languages / C#

ObjectLounge - An Object-Oriented Database Framework

Rate me:
Please Sign up or sign in to vote.
4.07/5 (8 votes)
30 Jul 2009LGPL310 min read 44K   425   45  
Host your Domain Models "Out Of The Box" + No storage or schema needed + Transactions on Domain Models + Validation
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Linq.Mapping;
using Technewlogic.ObjectLounge.Framework.Proxy;

namespace Technewlogic.ObjectLounge.Test.Model
{
	[Identity("_key")]
	public class OrderTypeCompositor : BOBase
	{
		#region Constants

		public const string NewCompositorName = "New OrderTypeCompositor";
		public const string StandardCompositorName = "StandardCompositor";

		#endregion

		// IMP: Diese Konvention irgendwo aufschreiben. Das mit dem _isInitialized muss nur dann gemacht werden, wenn Dummy-Daten so initialisiert werden, wie im DummyContextMock.
		public OrderTypeCompositor()
		{
			//OrderTypes = new CompositeCollection<OrderType>();
		}

		public Guid _key = Guid.NewGuid();

		public string _name;
		public virtual string Name
		{
			get { return _name; }
			set
			{
				_name = value;
				SendPropertyChanged("Name");
			}
		}

		[Composition]
		public virtual IList<OrderType> OrderTypes { get; protected set; }

		public override string ToString()
		{
			return this.GetType().Name + ": " + Name;
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) www.technewlogic.de
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions