.NET API
EvalRunDiffQuery
Tracon.Abstractions.dllWhich two eval runs to compare, and which page of the result to read.
public sealed record EvalRunDiffQuery : IEquatable<EvalRunDiffQuery>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”EvalRunDiffQuery()
Section titled “ EvalRunDiffQuery()”public EvalRunDiffQuery()Properties
Section titled “Properties”BaselineRunId
Section titled “ BaselineRunId”The run being compared against (the older, known-good side).
public required Guid BaselineRunId { get; init; }Property Value
Section titled “Property Value”CandidateRunId
Section titled “ CandidateRunId”The run being judged.
public required Guid CandidateRunId { get; init; }Property Value
Section titled “Property Value”The number of aligned cases to skip.
public int Skip { get; init; }Property Value
Section titled “Property Value”The maximum number of aligned cases to fetch.
public int Take { get; init; }Property Value
Section titled “Property Value”Remarks
Section titled “Remarks”Paging touches EvalRunDiff.Cases only; the counters are always for the whole diff.
TenantId
Section titled “ TenantId”The tenant both runs must belong to.
public required string TenantId { get; init; }Property Value
Section titled “Property Value”Remarks
Section titled “Remarks”Required. The tenant filter is never optional: a run belonging to another tenant reads exactly like a run that does not exist.
Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(EvalRunDiffQuery?)
Section titled “ Equals(EvalRunDiffQuery?)”public bool Equals(EvalRunDiffQuery? other)Parameters
Section titled “Parameters”other EvalRunDiffQuery?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(EvalRunDiffQuery?, EvalRunDiffQuery?)
Section titled “ operator ==(EvalRunDiffQuery?, EvalRunDiffQuery?)”public static bool operator ==(EvalRunDiffQuery? left, EvalRunDiffQuery? right)Parameters
Section titled “Parameters”left EvalRunDiffQuery?
right EvalRunDiffQuery?
Returns
Section titled “Returns”operator !=(EvalRunDiffQuery?, EvalRunDiffQuery?)
Section titled “ operator !=(EvalRunDiffQuery?, EvalRunDiffQuery?)”public static bool operator !=(EvalRunDiffQuery? left, EvalRunDiffQuery? right)Parameters
Section titled “Parameters”left EvalRunDiffQuery?
right EvalRunDiffQuery?