Hi,
I'm using llbl v3.
In TDL template I found there's SourceColumnDbType that would return the fields database type it's mapped to.
How can I get this in a c# lpt template?
The code I'm using is something like this:
foreach (FieldElement field in entity.Fields)
{
switch(field.??DbType??)
{
case "bigint": ....
case "nvarchar": ......
}
}
Thanks,
Veljko