Is it possible to pass a collection of objects to a RIA Data Service query? I have no issues sending an Entity, an Int or an array of primitive types, but as soon as i declare a method like this
public void GetLessonsConflicts(Lesson[] lessons)
{
}
i get a compilation error
" Operation named 'GetLessonsConflicts' does not conform to the required signature. Parameter types must be an entity type or one of the predefined serializable types"
I am just trying to do some validation on the server side before i save the data. I've tried List, IEnumerable etc.
Thanks