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
My goal is to prevent 2 fields from being created when generating the entity files. I modified the .csx file with the following:
foreach (var property in Entity.Properties)
{
// Skip properties
if (Entity.EntityClass == "FuelOrder")
{
if (property.PropertyName == "ESignature"
|| property.PropertyName == "ESignatureImage")
{
continue;
}
}
This generated a yaml file for FuelOrder without the 2 fields, however, the .cs file contained the 2 fields. What am I missing? How do I use the templates after generating them?
The text was updated successfully, but these errors were encountered:
My goal is to prevent 2 fields from being created when generating the entity files. I modified the .csx file with the following:
This generated a yaml file for FuelOrder without the 2 fields, however, the .cs file contained the 2 fields. What am I missing? How do I use the templates after generating them?
The text was updated successfully, but these errors were encountered: