Add support for using generic SQL queries to filter EditData rows. (#605)

This commit is contained in:
Cory Rivera
2018-05-02 10:13:47 -07:00
committed by GitHub
parent 5a55e8b35c
commit 7415c529f3
13 changed files with 300 additions and 11 deletions

View File

@@ -31,6 +31,11 @@ namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
/// The type of the object to use for generating an edit script
/// </summary>
public string ObjectType { get; set; }
/// <summary>
/// The query used to retrieve result set
/// </summary>
public string QueryString { get; set; }
}
/// <summary>