I have an LLBLGen project consisting of multiple catalogs but when my projects use that DAL, it always needs to point to the same database. Currently, I implement this by having multiple sqlServerCatalogNameOverwrites
<sqlServerCatalogNameOverwrites>
<add key="Catalog1" value="AppDB"/>
<add key="Catalog2" value="AppDB"/>
<add key="Catalog3" value="AppDB"/>
<add key="Catalog4" value="AppDB"/>
<add key="Catalog5" value="AppDB"/>
</sqlServerCatalogNameOverwrites>
The problem is, this list is now becoming quite long... is there a way of overwriting all catalog names at once, to the same thing?
Thanks.