What is this doing internally?
Public Shared Function FindGroupStudentByStudentIdent(ByVal groupStudentCollection As EntityCollection, ByVal studentIdent As Integer) As Integer
Dim i As Integer
i = groupStudentCollection.Find(New EntityPropertyDescriptor2(EntityFieldFactory.Create(Elementary.GradeBook.LLBL.GroupStudentFieldIndex.StudentIdent), _
GetType(GroupStudentEntity), False), studentIdent)
Return i
End Function
Is it looping thru the collection until it finds a match or is it faster then that?
Thanks,
Fishy