A many-to-one association to an entity

Namespace:  NHibernate.Type
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ManyToOneType _
	Inherits EntityType _
	Implements IAssociationType, IType, ICacheAssembler
C#
[SerializableAttribute]
public class ManyToOneType : EntityType, 
	IAssociationType, IType, ICacheAssembler
Visual C++
[SerializableAttribute]
public ref class ManyToOneType : public EntityType, 
	IAssociationType, IType, ICacheAssembler
JavaScript
NHibernate.Type.ManyToOneType = function();

Type.createClass(
	'NHibernate.Type.ManyToOneType',
	NHibernate.Type.EntityType,
	NHibernate.Type.IAssociationType,
	NHibernate.Type.IType,
	NHibernate.Type.ICacheAssembler);

Inheritance Hierarchy

System..::.Object
  NHibernate.Type..::.AbstractType
    NHibernate.Type..::.EntityType
      NHibernate.Type..::.ManyToOneType

See Also