CSALDatabase.FindStudentsByLocation Method

CSAL Mongo

CSALDatabase FindStudentsByLocation Method CSAL Mongo Access Library
Return a list of students that are at the given location

Namespace: CSALMongo
Assembly: CSALMongo (in CSALMongo.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

public List<Student> FindStudentsByLocation(
	string location
)
public List<Student> FindStudentsByLocation(
	string location
)
Public Function FindStudentsByLocation ( 
	location As String
) As List(Of Student)
Public Function FindStudentsByLocation ( 
	location As String
) As List(Of Student)
public:
List<Student^>^ FindStudentsByLocation(
	String^ location
)
public:
List<Student^>^ FindStudentsByLocation(
	String^ location
)

Parameters

location
Type: OnlineSystem String
Location - should match Model.Class.Location

Return Value

Type: OnlineList Student 
All students in classes with the given location
See Also