コード例 #1
0
 public QueryService(CompileService compiler, DatabaseContextService databaseContextService, SchemaService schemaService)
 {
     _compiler = compiler;
     _databaseContextService = databaseContextService;
     _schemaService          = schemaService;
 }
コード例 #2
0
 public DatabaseContextService(SchemaService schemaService, CompileService compileService)
 {
     _schemaService  = schemaService;
     _compileService = compileService;
     _map            = new Dictionary <string, CompileResult>();
 }