Skip to content

Commit e88096b

Browse files
committed
update TotalLogicalReads, TotalLogicalWrites, TotalPhysicalReads format to no decimals (N0)
1 parent 77ec4a4 commit e88096b

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/PlanViewer.Core/Models/QueryStoreHistoryRow.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,10 @@ public class QueryStoreHistoryRow
3838
public string AvgRowcountDisplay => AvgRowcount.ToString("N2");
3939
public string TotalDurationMsDisplay => TotalDurationMs.ToString("N2");
4040
public string TotalCpuMsDisplay => TotalCpuMs.ToString("N2");
41-
public string TotalLogicalReadsDisplay => TotalLogicalReads.ToString("N2");
42-
public string TotalLogicalWritesDisplay => TotalLogicalWrites.ToString("N2");
43-
public string TotalPhysicalReadsDisplay => TotalPhysicalReads.ToString("N2");
41+
public string TotalLogicalReadsDisplay => TotalLogicalReads.ToString("N0");
42+
public string TotalLogicalWritesDisplay => TotalLogicalWrites.ToString("N0");
43+
public string TotalPhysicalReadsDisplay => TotalPhysicalReads.ToString("N0");
4444
public string TotalMemoryMbDisplay => TotalMemoryMb.ToString("N2");
45-
4645
public string IntervalStartLocal => TimeDisplayHelper.FormatForDisplay(IntervalStartUtc);
4746
public string LastExecutionLocal => LastExecutionUtc.HasValue ? TimeDisplayHelper.FormatForDisplay(LastExecutionUtc.Value) : "";
4847
}

0 commit comments

Comments
 (0)