Hello there,
i have a class user, and i also have implemented a collection for the same user class - users. users will store user objects. users collection class implements the generic collection class - collection<user>.
i want to cast the LINQ query result into an object of my collection class - users. Everytime i try explicit casting, it gives me a cannot class runtime exception.
i tried to implement the iEnumerable interface also in my users collection class, but still i could not cast the query result.
Now i have to do a for loop within the query result set, and fill up my own custom collection - users.
please help me regarding this, thanx in advnce.
Sanjay Sachdev