Beim Ändern eines Serientermins kommt es nicht mehr zu einer Exception.
Wenn man bei einem Serientermin die CustomFields ändert und andere Standardfelder, werden beide Änderungen übernommen. Bisher wurden nur die Änderungen der CustomFields übernommen.
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<configuration>
|
|
|
|
<configSections>
|
|
<section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
|
|
</configSections>
|
|
|
|
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
|
|
<session-factory>
|
|
<property name="connection.provider">
|
|
NHibernate.Connection.DriverConnectionProvider
|
|
</property>
|
|
<property name="connection.driver_class">
|
|
NHibernate.Driver.MySqlDataDriver
|
|
</property>
|
|
|
|
<property name="connection.connection_string">
|
|
Server=localhost;Password=root;User ID=root;Initial Catalog=bewodemo
|
|
</property>
|
|
|
|
<!--<property name="connection.connection_string">
|
|
Server=localhost;Password=root;User ID=root;Initial Catalog=1234567890
|
|
</property>-->
|
|
|
|
<property name="dialect">
|
|
NHibernate.Dialect.MySQLDialect
|
|
</property>
|
|
<property name="proxyfactory.factory_class">
|
|
NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle
|
|
</property>
|
|
<property name="hbm2ddl.keywords">none</property>
|
|
<property name="show_sql">true</property>
|
|
<property name="format_sql">true</property>
|
|
|
|
<mapping assembly="BeWo.Data" />
|
|
</session-factory>
|
|
</hibernate-configuration>
|
|
|
|
</configuration> |