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

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -