Y
YankeeImperialistDog
I've seprated out my layers into seprate solutions (yes i know there will be
celebrations round the world because of this ;-) ). Because my Data Access is
in one dll and my Business Objects are in another dll i need to use
reflection in the for if i need to find properties for unknown classes.
Example: i may have many versions of a business object all of which are "is
a" of the base object, but a few have unique properties. If I want to call
the Fill Method with a string representation of the concrete class to
dynamicly load properties I need to load the dll of the business object.
Questions:
1. Will dot.net cache this so that it can be loaded once and used multiple
times during multiple load calls?
2. is there an alternative that does not require loading the dll w/o
duplicating the code for the object?
Thanks
KES
celebrations round the world because of this ;-) ). Because my Data Access is
in one dll and my Business Objects are in another dll i need to use
reflection in the for if i need to find properties for unknown classes.
Example: i may have many versions of a business object all of which are "is
a" of the base object, but a few have unique properties. If I want to call
the Fill Method with a string representation of the concrete class to
dynamicly load properties I need to load the dll of the business object.
Questions:
1. Will dot.net cache this so that it can be loaded once and used multiple
times during multiple load calls?
2. is there an alternative that does not require loading the dll w/o
duplicating the code for the object?
Thanks
KES