User1046032665 posted
I have this really strange error...
Strange in the fact that my website is working until I add linq to the BLL (where the Object datasource is connected to), then I get the following error:
ObjectDataSource XXXXXXXX could not find a non-generic method xxxxx that has no parameters.
Strange thing is that the non-generic method is there and has no parameters. I know it is working becuase without the following line, everything works.
return context.getListOfAttachmentsByFilter(filter1, filter2, filter3, filter4)
.Where(f => attachments.Contains(f.attachmentID));
if I remove the Where statement, it's fine but with the Where statement it falls over. This code is not in the method which is listed in the error.
I think it could be a bug.
Any suggestions or ways to investigate further?