CSALDatabase FindTurnsRaw Method | CSAL Mongo Access Library |
Exactly like FindTurns, but returns the raw BsonDocument
representation of the data. Since we are very liberal in what we
accept in SaveRawStudentActLesson, we might have turn data that
causes exceptions when interpreted with our Model
Namespace: CSALMongoAssembly: CSALMongo (in CSALMongo.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public List<BsonDocument> FindTurnsRaw( string lessonID, string userID )
public List<BsonDocument> FindTurnsRaw( string lessonID, string userID )
Public Function FindTurnsRaw ( lessonID As String, userID As String ) As List(Of BsonDocument)
Public Function FindTurnsRaw ( lessonID As String, userID As String ) As List(Of BsonDocument)
public: List<BsonDocument^>^ FindTurnsRaw( String^ lessonID, String^ userID )
public: List<BsonDocument^>^ FindTurnsRaw( String^ lessonID, String^ userID )
Parameters
- lessonID
- Type:
System String
Lesson to match. Null or empty string matches nothing (so all lessons)
- userID
- Type:
System String
Student to match. Null or empty string matches nothing (so all students)
Return Value
Type:
An unordered list of BsonDocument instances representing the turns found
See Also