CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
IReportTotalRowCount.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IReportTotalRowCount.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Implement this interface in a collection</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Core
11{
28 public interface IReportTotalRowCount
29 {
34 int TotalRowCount { get;}
35 }
36}
Implement this interface in a collection to report a total row count to Csla.Web.CslaDataSource,...
int TotalRowCount
The total number of rows of available data.