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.
Csla.Core.IReportTotalRowCount Interface Reference

Implement this interface in a collection to report a total row count to Csla.Web.CslaDataSource, where that row count is different from the collection's normal Count property value. More...

Properties

int TotalRowCount [get]
 The total number of rows of available data. More...
 

Detailed Description

Implement this interface in a collection to report a total row count to Csla.Web.CslaDataSource, where that row count is different from the collection's normal Count property value.

This interface is used to provide paging support for web data binding through Csla.Web.CslaDataSource. You should implement this interface in your business collection class, along with windowed data loading, to provide efficient paging support.

Definition at line 28 of file IReportTotalRowCount.cs.

Property Documentation

◆ TotalRowCount

int Csla.Core.IReportTotalRowCount.TotalRowCount
get

The total number of rows of available data.

Definition at line 34 of file IReportTotalRowCount.cs.