public FileContextProvider(
            XmlSchemaSet xmlSchemaSet,
            IDataConfiguration dataConfiguration,
            IXsdConfiguration xsdConfiguration,
            IBulkLoadClientResult bulkLoadClientResult)
        {
            _xmlSchemaSet         = xmlSchemaSet;
            _dataConfiguration    = dataConfiguration;
            _xsdConfiguration     = xsdConfiguration;
            _bulkLoadClientResult = bulkLoadClientResult;

            _fileContexts = new Lazy <List <FileContext> >(() => CreateFileContexts().Where(x => x.IsValid).ToList());
        }
Esempio n. 2
0
 public XsdStreamsRetriever(IXsdConfiguration configuration)
 {
     _configuration = configuration;
 }