This question is locked. New answers and comments are not allowed.
Hi! We have troubles with names of generated properties, for example:
Person have 2 addresses: home and current. Table Person have two columns that have relations with Address table
Hi! We have troubles with generated names of properties, for example:
Person have 2 addresses: home and current. Table Person have two columns that have relations with Address table
But generated by OA properties in Person have names like:
In table columns with foreign keys have names like HomeAddressId, CurrentAddressId
How to generate names for these properties like HomeAddress and CurrentAddress?
Person have 2 addresses: home and current. Table Person have two columns that have relations with Address table
Hi! We have troubles with generated names of properties, for example:
Person have 2 addresses: home and current. Table Person have two columns that have relations with Address table
But generated by OA properties in Person have names like:
private Address _address; public virtual Address Address { get { return this._address; } set { this._address = value; } }private Address _address1; public virtual Address Address1 { ...}How to generate names for these properties like HomeAddress and CurrentAddress?