20 lines
929 B
XML
Executable File
20 lines
929 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
XML based configuration file for CommandRunnerJobInfoModel. This is set to eager loading (lazy="false") as by the time we return
|
|
the data via WCF the session is closed and it causes a crash.
|
|
|
|
@see RSG.Pipeline.Automation.Database.Domain.Entities.Jobs.CommandRunnerJobInfoModel
|
|
-->
|
|
<hibernate-mapping assembly="RSG.Pipeline.Automation.Database.Domain" namespace="RSG.Pipeline.Automation.Database.Domain.Entities.Jobs" xmlns="urn:nhibernate-mapping-2.2" >
|
|
<class name="CommandRunnerJobInfoModel" table="CommandRunnerJobInfos" lazy="false">
|
|
<!-- BaseModel Properties -->
|
|
<id name="ID">
|
|
<generator class="assigned" />
|
|
</id>
|
|
|
|
<property name="Command" lazy="false"/>
|
|
<property name="Args" lazy="false"/>
|
|
<property name="ErrorRegex" lazy="false"/>
|
|
<property name="WarningRegex" lazy="false"/>
|
|
</class>
|
|
</hibernate-mapping> |