You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have tried debugging this and cant get to the bottom of it.
i have a DTO like this for example:
using Common.Annotations;namespace API.DTO.Training
{publicclassExample{/// <summary>/// This documentation is NOT included/// </summary>publicCustomClassTypeSingleCustomClass{get;set;}/// <summary>/// This documentation is included/// </summary>publicList<CustomClassType> EnumerableCustomClass {get;set;}/// <summary>/// This documentation is included/// </summary>publicboolSingleSystemType{get;set;}}}
comments that appear as description in the schema:
a system type (string, bool etc)
single or an enumerable
a custom type (a class i define) if it is a list / enumerable type
only for enumerable
comments that do not appear as description in schema:
a custom type (a class i define) if it is a singular property
any idea what can be causing this? i tried debugging down to the XmlCommentsWithRemarksSchemaFilter class and these properties never show up when the filter is being applied
The text was updated successfully, but these errors were encountered:
i have tried debugging this and cant get to the bottom of it.
i have a DTO like this for example:
string
,bool
etc)any idea what can be causing this? i tried debugging down to the
XmlCommentsWithRemarksSchemaFilter
class and these properties never show up when the filter is being appliedThe text was updated successfully, but these errors were encountered: