The only way is to use the Object type, or some other class that all the objects you're storing will derive from.
The reason you won't be able to do it any other way is because the functionality you're looking for is really an example of dynamic binding, a.k.a. late binding, a.k.a. dynamic typing. This means that the actual type of a particular object is not known at compile time.
As of version 3.0 C# does not support this, even with generics. Generics provide a way to write a class or a method that relies on types which, at the time of your writing, are not known. But at the site of any use of that class or method they must be determinable at compile-time. So any place where you have a generic type in a variable definition or a method call, you must either explicitly provide a generic parameter, or it must be inferrable from the context. And every time that line of code is executed in the same context, those generic parameters must be the same.
Depending on how you are making use of the collection and the items in it, and if you have access to and the ability to modify the Where class, it may be enough to define a non-generic interface or base class providing most or all of the functionality you need, and derive Where from that, similar to how the CLR interface System.Collections.Generic.IList derives from System.Collections.IList and System.Collections.Generic.IEnumerable derives from System.Collections.IEnumerable. However, if you need to be able to determine the specific generic parameters used to create the actual instances of each of the objects in your collection, you will still likely run into problems.