示例#1
0
        protected void RegisterFederatedIdCol(string colName, Entity e, string entityDefColName = null)
        {
            if (!ColumnExists(colName))
            {
                throw new ApplicationException(string.Format("Column does not exist: {0}", colName));
            }

            var def = new FederationDefinition
            {
                Entity                  = e,
                OriginalColName         = colName,
                FederationIdColName     = EntityUtils.GetFederatedFieldName(colName),
                EntityDefinitionColName = entityDefColName
            };

            _federatedIdCols.Add(def);
        }
示例#2
0
 private bool OmitFromSanityCheck(V7StagingTable historyTable, FederationDefinition federationDefinition)
 {
     return(false);
 }