use path to identify edit target (#1292)

* use path to identify edit target

* async action

* revert RequestContext change

* comments

* address comments

* fix test
This commit is contained in:
Alan Ren
2021-11-10 17:39:48 -08:00
committed by GitHub
parent c738e3bdf7
commit a3c69f3dd2
14 changed files with 528 additions and 173 deletions

View File

@@ -2212,4 +2212,18 @@ SizeInMegaBytesFormat = {0} MB
;Size in GigaBytes format
SizeInGigaBytesFormat = {0} GB
;Size in TeraBytes format
SizeInTeraBytesFormat = {0} TB
SizeInTeraBytesFormat = {0} TB
############################################################################
# Table Designer
TableNotInitializedException(string tableId) = Initialization is not properly done for table with id '{0}'
TableEditPathNotProvidedException = The path in the table change information cannot be empty
InvalidTableEditPathException(string path, string editType) = The path '{0}' in the table change information is not valid for edit type: '{1}'
TableColumnIdentityGroupName = Identity Specification
TableColumnIsIdentityPropertyTitle = Is Identity
TableColumnIsIdentityPropertyDescription = Specifies whether the column is the identity column for the table.
TableColumnIdentityIncrementPropertyTitle = Identity Increment
TableColumnIdentityIncrementPropertyDescription = Displays the value added to the maximum existing row identity value when generating the next identity value.
TableColumnIdentitySeedPropertyTitle = Identity Seed
TableColumnIdentitySeedPropertyDescription = Displays the initial row value for an identity column.