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

Popular posts from this blog

All overlapping substrings matching a java regex -

c++ - Using OpenSSL in a multi-threaded application -

php - Deleting/Renaming a locked file -