Castle.ActiveRecord.HasManyToAnyAttribute.HasManyToAnyAttribute C# (CSharp) Méthode

HasManyToAnyAttribute() public méthode

Initializes a new instance of the HasManyToAnyAttribute class.
public HasManyToAnyAttribute ( Type mapType, string keyColum, string table, Type idType, string typeColumn, string idColumn ) : System
mapType System.Type Type of the map.
keyColum string The key colum.
table string The table.
idType System.Type Type of the id.
typeColumn string The type column.
idColumn string The id column.
Résultat System
		public HasManyToAnyAttribute(Type mapType, string keyColum, 
			string table, Type idType,
			string typeColumn, string idColumn) : base(mapType, keyColum, table)
		{
			this.idType = idType;
			this.typeColumn = typeColumn;
			this.idColumn = idColumn;
		}
HasManyToAnyAttribute