Files
BeWoPlaner/Data/Mappings/CustomerTeam.hbm.xml
staccatomamba b43202e46f Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo
# Conflicts:
#	BeWo/BeWo.csproj
#	Data/Data.csproj
#	Host/Multitenancy/demo.config
#	Shared/BeWoEntityEnums.cs
#	Shared/Shared.csproj
2017-08-18 14:50:39 +02:00

22 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="BeWo.Data.Entities.Team,BeWo.Data" table="CustomerTeam">
<id name="Oid" column="Oid" type="Int64" unsaved-value="null">
<generator class="identity" />
</id>
<version type="Int64" column="Version" name="Version" />
<property column="Tid" type="BS.Shared.TableID, BS.Shared" name="_Tid" access="field" />
<property column="InsTs" type="DateTime" name="InsTs" />
<property column="InsUser" type="String" name="InsUser" length="256" />
<property column="Name" type="String" name="Name" />
<property column="IsActive" type="BS.Shared.ActivationTypeId, BS.Shared" name="IsActive" />
<property column="SystemEntryID" type="BS.Shared.SystemEntryID, BS.Shared" name="SystemEntryID" />
<property column="UdpUser" type="String" name="UdpUser" length="256" />
<property column="Notice" type="String" name="Notice" length="1024" />
<bag name="MemberList" table="Customer2CustomerTeam" generic="true" cascade="none" batch-size="250">
<key column="CustomerTeamOid" />
<many-to-many column="CustomerOid" class="BeWo.Data.Entities.Customer,BeWo.Data" />
</bag>
</class>
</hibernate-mapping>