Exemplo n.º 1
0
 public QueryService(CompileService compiler, DatabaseContextService databaseContextService, SchemaService schemaService)
 {
     _compiler = compiler;
     _databaseContextService = databaseContextService;
     _schemaService          = schemaService;
 }
Exemplo n.º 2
0
 public CompileService(SchemaService schemaService)
 {
     _schemaService   = schemaService;
     _projectjsonPath = Directory.GetCurrentDirectory();
     AssemblyLoadContext.InitializeDefaultContext(LibraryLoader.Instance.Value);
 }
Exemplo n.º 3
0
 public DatabaseContextService(SchemaService schemaService, CompileService compileService)
 {
     _schemaService  = schemaService;
     _compileService = compileService;
     _map            = new Dictionary <string, CompileResult>();
 }