Skip to main content
.NET 6.0+

AssociationAttribute(String, String, String) Constructor

Initializes a new instance of the AssociationAttribute class with the specified settings.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public AssociationAttribute(
    string name,
    string elementAssemblyName,
    string elementTypeName
)

Parameters

Name Type Description
name String

A String value which specifies the member’s association name. This value is assigned to the AssociationAttribute.Name property.

elementAssemblyName String

A String value which specifies the name of the assembly where the type associated with the object at the opposite end of the association is declared. This value is assigned to the AssociationAttribute.AssemblyName property.

elementTypeName String

A String value which specifies the full name of the type that describes the object on the opposite end of the association. This value is assigned to the AssociationAttribute.ElementTypeName property.

See Also