This question is locked. New answers and comments are not allowed.
Hi,
What is the meaning of the "current" attribute of the "mappings" element? Let's suppose that my application uses two databases:
It seems to me that in the runtime it means nothing, doesn't it?
Regards
Tomasz
What is the meaning of the "current" attribute of the "mappings" element? Let's suppose that my application uses two databases:
<connections> <connection id="conn1"> ..... <backendconfigurationname>backconf1</backendconfigurationname> </connection> <connection id="conn2"> ..... <backendconfigurationname>backconf2</backendconfigurationname> </connection> </connections> <backendconfigurations> <backendconfiguration id="backconf1" backend="mssql"> <mappingname>baseMapping1</mappingname> </backendconfiguration> <backendconfiguration id="backconf2" backend="mssql"> <mappingname>baseMapping2</mappingname> </backendconfiguration> </backendconfigurations> <mappings current="baseMapping1"> <mapping id="baseMapping1"> ..... </mapping> <mapping id="baseMapping2"> ..... </mapping> </mappings> Regards
Tomasz