示例#1
0
        public override TableColumnMappings GetColumnMappingsFromStage(DataStoreConfiguration c)
        {
            // establish the column mappings between the staging tables and this public table
            var m = new TableColumnMappings();

            m.AddFederatedIdMapping("event_id");
            m.AddFixtureIdAndNameMapping(c);
            m.AddRemainingSimpleMappings(Columns);

            return(m);
        }