c# - LLBLGen Template Binding test for date type -
in llblgen template bindings viewer, want check if field date type, , if so, action
i have similar, checks string type:
<[foreach entityfield]> <[if isstringfield]><[entityfieldname]> = ""; <[endif]> <[nextforeach]>
i'd able similar date types, like:
<[foreach entityfield]> <[if isdatefield]><[entityfieldname]> = datetime.today; <[endif]> <[nextforeach]>
however, isdatefield not available command.
thanks in advance.
Comments
Post a Comment