Specified a different location for the Log File.
Changed code to use log Info Changed code to append error messages rather than replace text Added/Changed code to use Log4Net. Changed logic for Updates to Use IDs rather than Objects for internal Updates Added a FormatColumn token to handle DTS, Added comments to describe tokens Added methods ParentRefU and ParentRefU2 to support otther changes
This commit is contained in:
@@ -127,6 +127,18 @@
|
||||
if (colp != null) return ClassName(col.Table) + ".Get(" + RelObjTypeCast(col) + MemberName(col) + ")";
|
||||
return null;
|
||||
}
|
||||
private string ParentRefU(IColumn col)
|
||||
{
|
||||
IColumn colp = ParentCol(col);
|
||||
if (colp != null) return RelObjTypeCast(col) + MemberName(col);
|
||||
return null;
|
||||
}
|
||||
private string ParentRefU2(IColumn col)
|
||||
{
|
||||
IColumn colp = ParentCol(col);
|
||||
if (colp != null) return MemberName(col);
|
||||
return null;
|
||||
}
|
||||
private string ParentTypeName(IColumn col)
|
||||
{
|
||||
IColumn colp = ParentCol(col);
|
||||
|
Reference in New Issue
Block a user