[This is preliminary documentation and is subject to change.]

Allow our users to search by rating threshold.

Namespace: MvcTestApp.Controllers
Assembly: MvcTestApp (in MvcTestApp.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public IEnumerable<LolCat> GetlolCatsByRating(
	decimal Rating
)
Visual Basic
Public Function GetlolCatsByRating ( _
	Rating As Decimal _
) As IEnumerable(Of LolCat)
Visual C++
public:
IEnumerable<LolCat^>^ GetlolCatsByRating(
	Decimal Rating
)

Parameters

Rating
Type: System..::..Decimal
The minimum rating that the lolCat must achieve.

Return Value

An IEnumerable of lolCats that meet the minimum Rating.

See Also