AddParameter does not create the column in my tracking table #1278
Unanswered
arjunbharara
asked this question in
Q&A
Replies: 3 comments 2 replies
-
tracking tables has only the primary key and the metadata columns |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
1 reply
-
but there you have mentioned that column will be automatically in the tracking table. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
if (setup.Tables[tableForFilter.TableName] != null)
{
var filter = new SetupFilter(tableForFilter.TableName);
var columnName = clusterColumnSyncDbo.ColumnName.Trim();
filter.AddParameter(columnName, tableForFilter.TableName);
//clusterColumnSyncDbo.Filter.Trim();
filter.AddCustomWhere("{{{IsSystemUser}}}= 0");
setup.Filters.Add(filter);
}
the column does not get added in my tracking table .
Beta Was this translation helpful? Give feedback.
All reactions