Hi
What is the best strategy for including inline code documentation for each generated Field of an Entity? i.e. Have my own documentation in the <summary> section of the generated code below???
Cheers,
Mark
/// <summary> The CommissionPercent property of the Entity Enquiry<br/><br/>
/// </summary>
/// <remarks>Mapped on table field: "Enquiry"."CommissionPercent"<br/>
/// Table field type characteristics (type, precision, scale, length): Decimal, 18, 0, 0<br/>
/// Table field behavior characteristics (is nullable, is PK, is identity): false, false, false</remarks>
public virtual System.Decimal CommissionPercent
{
get { return (System.Decimal)GetValue((int)EnquiryFieldIndex.CommissionPercent, true); }
set { SetValue((int)EnquiryFieldIndex.CommissionPercent, value, true); }
}