File tree Expand file tree Collapse file tree
src/PlanViewer.Core/Models Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments