This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi there, I get this exception: Mindscape.LightSpeed.LightSpeedException was unhandled by user code
I use the version 4.0.534.17874 Can please you have look what is going wrong here? Test project
|
|
|
Thanks for reporting this. We're not yet sure why it's happening, but it appears to be something to do with the use of covariance in the type of the returned query. If you change this: IQueryable<UserIdentity> getUser = UnitOfWork.UserNameIdentities... to IQueryable<UserNameIdentity> getUser = UnitOfWork.UserNameIdentities... then this resolves the error. |
|
|
Thanks for the tip. |
|