roydukkey / NHiberntate.HierarchyId.UserType

Microsoft.SqlServer.Types.HierarchyId mapping support for NHibernate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NHiberntate HierarchyId UserType v1.0.0

Download Solution | Assembly

Mapping

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="DataLayer" namespace="NHibernate.Map">
	<class name="NHibernate.Map.OrganizationUnit, DataLayer" table="`orgunit`">

		<property name="HierarchyId" column="`ou_hid`" type="NHibernate.HierarchyId.UserType, NHibernate.HierarchyId.UserType" />
		...

	</class>
</hibernate-mapping>

Object with SqlHierarchyId

namespace NHibernate.Map
{
	using Microsoft.SqlServer.Types;

	public class OrganizationUnit
	{
		#region Fields

		private SqlHierarchyId _hierarchyId;
		...

		#endregion Fields

		#region Properties

		public virtual SqlHierarchyId HierarchyId
		{
			get { return _hierarchyId; }
			set { _hierarchyId = value; }
		}
		...

		#endregion Properties
	}
}

About

Microsoft.SqlServer.Types.HierarchyId mapping support for NHibernate


Languages

Language:C# 100.0%