I get the following error after I upgrade:
'Find' is not a member of 'MedfordSchoolDistrict.Elementary.GradeBook.LLBL.HelperClasses.EntityCollection'.
I could not find a resolution. What is the correct way of doing a Find?
Thanks,
Fishy
Edit: Here is the Code:
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