A common way to do this is to record the number of queries requested in the database. Then you can add a property to the domain object, which can be populated in the usual way with a data access layer, for example.
public class Question
{
public int HitCount { get; set; }
}
.