Class PaginatedQueryResultModel<TQueryModel>
This class defines the basic query result model for the paginated query.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Vasont.Publisher.Models.Queries
Assembly: Vasont.Publisher.Models.dll
Syntax
public class PaginatedQueryResultModel<TQueryModel>
where TQueryModel : class
Type Parameters
Name | Description |
---|---|
TQueryModel | The type of the query result. |
Properties
| Improve this Doc View SourceResults
Gets or sets the results of the model query.
Declaration
public List<TQueryModel> Results { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TQueryModel> | The results. |
TotalCount
Gets or sets the total records.
Declaration
public int TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The total records. |