StackExchange.Profiling.Timing.GetExecutedCount C# (CSharp) Méthode

GetExecutedCount() private méthode

Returns the number of sql statements of type that were executed in this Timing.
private GetExecutedCount ( ExecuteType type ) : int
type ExecuteType
Résultat int
        internal int GetExecutedCount(ExecuteType type)
        {
            return HasSqlTimings ? SqlTimings.Count(s => s.ExecuteType == type) : 0;
        }