Templating
Brought to you by:
firstdivision
Provide a way to allow people to modify the code
templates that get used when the SQL and VB (or
another language???) code is created.
Basically something like a listing of supported
template files and keywords that users can write
their own for.
Something like:
TemplateFile: VB_SingleItem.adalTemplate
---------------------------------------
Public Class {{TABLE_NAME}}Item
Dim _{{COLUMN_NAME}} As {{COLUMN_TYPE}}
Public Property {{COLUMN_NAME}}() As {{COLUMN_TYPE}}
Get
Return _{{COLUMN_NAME}}
End Get
Set(ByVal Value As {COLUMN__TYPE}})
_{{COLUMN_NAME}} = Value
End Set
End Property
----------------------------------------