Hello everyone,
How can I do the following
<[ if StringValueEquals typeofField "System.Guid"]> in the dto template.
I need this because I don't want to set the primary key if the Guid is empty.
IE
If (_sportId != Guid.Empty)
{
toFill.SportId = _sportId;
}
Thanks