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

link|improve this question

33% accept rate
does the name change of the dynamic typed assembly? – Gamlor Feb 27 '11 at 11:49
NO Change, even using the same assemblybuilder, the database won't retrieve the saved objects. – Need4Steed Feb 27 '11 at 14:26
I didn't digg into the issue. I suspect it has to do with assembly loading. See here: tracker.db4o.com/browse/COR-2122 – Gamlor Feb 28 '11 at 20:45
Actually, when I saved the dynamic assembly into a file, and loaded it using Assembly.LoadFrom, db4o has no problem dealing with the loading. Only the dynamic assembly can not be used as a schema thing (i don't know the detail of the implementation) for RETRIEVAL, but on the contrary, the SAVING is totally okay. – Need4Steed Mar 1 '11 at 6:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.