Hi,
I'm working on a large enterprise application that has a series of data
access assemblies for different functional areas. For example, we might
have one assembly that concentrates on customer details etc and another
that looks after invoices. In each assembly, there are hundreds of
embedded resource sqlmap configurations (generally one for each entity /
view).
When I come to pull these together into an application, my application's
sqlmap.config file then has to list out all of these sqlmap
configuration resources individually?
Ideally what I'd like to do is have each assembly pull together its own
<sqlmaps> section and then include these in my application's <sqlmaps> :
eg:
In sqlmaps.config as a resource in Project.Domain.Customers.dll:
<sqlmaps>
<sqlmap embedded="Project.Domain.Customers.Customer.xml"/>
<sqlmap embedded="Project.Domain.Customers.Contact.xml"/>
<...etc>
</sqlmaps>
Then in sqlmaps.config as a resource in Project.Domain.Invoices.dll:
<sqlmaps>
<sqlmap embedded="Project.Domain.Invoices.Invoice.xml"/>
<sqlmap embedded="Project.Domain.Invoices.InvoiceLine.xml"/>
<...etc>
</sqlmaps>
And finally to then use these in my application, my application's
sqlmaps section just needs to look like this:
<sqlmaps>
<sqlmap embedded="Project.Domain.Customers.sqlmaps.config,
Project.Domain.Customers"/>
<sqlmap embedded="Project.Domain.Invoices.sqlmaps.config,
Project.Domain.Invoices"/>
</sqlmaps>
Is this, or anything like it, possible without having to write out the
hundreds of sql map config files in my application project ?
Thanks,
Tony
Edenbrook Ltd.
Registered in England and Wales
Company Number 4136328
www.edenbrook.co.uk
DISCLAIMER
This message has been sent via the Internet. Internet communications are not
secure against interception or modification. Edenbrook Ltd therefore cannot
guarantee that this message has not been modified in transit. This message and
any files transmitted with it are confidential and intended solely for the use
of the addressee. If you have received this message in error please notify the
sender and destroy your copies of the message and any attached files.
______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________