6 instantiations of LazyTextWriterCreator
System.Data.Entity.Design (6)
System\Data\Entity\Design\EntityCodeGenerator.cs (4)
79return InternalGenerateCode(sourceEdmSchemaFilePath, new LazyTextWriterCreator(targetPath), additionalEdmSchemaFilePaths, targetEntityFrameworkVersion); 117return InternalGenerateCode(sourceEdmSchemaFilePath, new LazyTextWriterCreator(targetPath), null, targetEntityFrameworkVersion); 165return InternalGenerateCode(tempSourceEdmSchemaPath, schemaVersion, new LazyTextWriterCreator(target), null, targetEntityFrameworkVersion); 226return InternalGenerateCode(tempSourceEdmSchemaPath, schemaVersion, new LazyTextWriterCreator(target), additionalTempPaths, targetEntityFrameworkVersion);
System\Data\EntityModel\EntityClassGenerator.cs (2)
159new LazyTextWriterCreator(target), 249using (LazyTextWriterCreator target = new LazyTextWriterCreator(targetPath))
6 references to LazyTextWriterCreator
System.Data.Entity.Design (6)
System\Data\Entity\Design\EntityCodeGenerator.cs (3)
246private IList<EdmSchemaError> InternalGenerateCode(string sourceEdmSchemaFilePath, LazyTextWriterCreator textWriter, IEnumerable<string> additionalEdmSchemaFilePaths, Version targetFrameworkVersion) 323private IList<EdmSchemaError> InternalGenerateCode(string sourceEdmSchemaFilePath, Version schemaVersion, LazyTextWriterCreator textWriter, IEnumerable<string> additionalEdmSchemaFilePaths, Version targetFrameworkVersion) 405private IList<EdmSchemaError> GenerateCodeFor1_1Schema(string sourceEdmSchemaFilePath, LazyTextWriterCreator textWriter, IEnumerable<string> additionalEdmSchemaFilePaths)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (1)
77internal void GenerateCode(LazyTextWriterCreator target, string targetLocation)
System\Data\EntityModel\EntityClassGenerator.cs (2)
249using (LazyTextWriterCreator target = new LazyTextWriterCreator(targetPath)) 272LazyTextWriterCreator target,