mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 01:25:41 -05:00
Support 'for XML and for JSON' queries (#75)
* Set isXMl and isJson for 'for xml/json' resultSets * Change string comparison * Modify if-else
This commit is contained in:
@@ -182,7 +182,12 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
/// <summary>
|
||||
/// Whether or not the column is XML
|
||||
/// </summary>
|
||||
public bool IsXml { get; private set; }
|
||||
public bool IsXml { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Whether or not the column is JSON
|
||||
/// </summary>
|
||||
public bool IsJson { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user