rename context key databasename to databaseName (#903)

* rename context key databasename to databaseName

* maintain correct context on database name
This commit is contained in:
Anthony Dresser
2018-03-16 19:52:33 -07:00
committed by GitHub
parent 38bedea0bd
commit 40550d0840
4 changed files with 21 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ export class ConnectionContextkey implements IContextKey<IConnectionProfile> {
static Provider = new RawContextKey<string>('connectionProvider', undefined);
static Server = new RawContextKey<string>('serverName', undefined);
static Database = new RawContextKey<string>('databasename', undefined);
static Database = new RawContextKey<string>('databaseName', undefined);
static Connection = new RawContextKey<IConnectionProfile>('connection', undefined);
private _providerKey: IContextKey<string>;