Enable with Code First Comments from Code to DB
Auto-insert code xml-documenten (c#) to Database comments (Oracle).
Example:
/// <summary>
/// Id for XYZ
/// </summary>
public int Id {get;set}
should auto create the follwoing sql:
comment on column mytabel.id is 'Id for XYZ';
3
votes
Flo
shared this idea