In my experiment, I saved some objects of an emitted type, which subclassed a type in the entry assembly, like the one below:
///normal assembly
public class Person{ public string Name; public int Age;}
///dynamic assembly "dynAsm"
public class Dude: Person{}
Peron tom = (Person)Activator.CreateInstance(dudeType);
tom.Name = "Tom";
tom.Age = 100;
db.Store(tom);
It got stored into the db file successfully. Cuz I've checked the file using ObjectManager, and saw the tom object is actually in there.
But when I was using the querying methods of IObjectContainer and IQuery to programmingly retrieved the saved object, I got nothing in return.
I've tryed:
db.Query(dudeType); //dudeType is from a dynamic assembly with the same name as
//the one used to generate "tom"
//nothing
db.Query(typeof(Person));
//nothing
db.Query(typeof(object));
//still nothing
and using the IQuery object in the same way, as well I couldn't get anything.
So, someone please tell me: why I can't do that? Why even the base class approach won't work either?
PS: When I saved the dynamic assembly into a file, loaded it and tried the query again, everything worked fine. But as you know, CLR doesn't allow assembly to be unloaded, therefore the saving loading thing isn't what I wanted