mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-22 01:25:44 -05:00
* Fix for https://github.com/Microsoft/sqlopsstudio/issues/1317 * formatting the code
This commit is contained in:
@@ -22,6 +22,11 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
/// </summary>
|
||||
public bool IsNull { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Culture invariant display value for the cell, this value can later be used by the client to convert back to the original value.
|
||||
/// </summary>
|
||||
public string InvariantCultureDisplayValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The raw object for the cell, for use internally
|
||||
/// </summary>
|
||||
@@ -42,6 +47,7 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
Validate.IsNotNull(nameof(other), other);
|
||||
|
||||
other.DisplayValue = DisplayValue;
|
||||
other.InvariantCultureDisplayValue = InvariantCultureDisplayValue;
|
||||
other.IsNull = IsNull;
|
||||
other.RawObject = RawObject;
|
||||
other.RowId = RowId;
|
||||
|
||||
Reference in New Issue
Block a user