From: <fab...@us...> - 2010-08-05 12:39:36
|
Revision: 5115 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5115&view=rev Author: fabiomaulo Date: 2010-08-05 12:39:25 +0000 (Thu, 05 Aug 2010) Log Message: ----------- Minor (made cross RDBMS) Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/Linq/Mappings/Patient.hbm.xml Modified: trunk/nhibernate/src/NHibernate.Test/Linq/Mappings/Patient.hbm.xml =================================================================== --- trunk/nhibernate/src/NHibernate.Test/Linq/Mappings/Patient.hbm.xml 2010-08-05 12:30:38 UTC (rev 5114) +++ trunk/nhibernate/src/NHibernate.Test/Linq/Mappings/Patient.hbm.xml 2010-08-05 12:39:25 UTC (rev 5115) @@ -4,7 +4,7 @@ <id name="Id" column="PatientId" type="Int64"> <generator class="native" /> </id> - <property type="System.Boolean" not-null="true" name="Active" column="[Active]" /> + <property type="System.Boolean" not-null="true" name="Active" column="`Active`" /> <many-to-one name="Physician" cascade="none" column="PhysicianId" not-null="true" class="Physician" /> <bag name="PatientRecords" inverse="true" lazy="true" cascade="all"> <key column="PatientId" /> @@ -16,32 +16,32 @@ <id name="Id" column="PhysicianId" type="Int64"> <generator class="native" /> </id> - <property type="System.String" not-null="true" name="Name" column="[Name]" /> + <property type="System.String" not-null="true" name="Name" column="`Name`" /> </class> <class name="PatientRecord" table="PatientRecords"> <id name="Id" column="PatientRecordId" type="System.Int64"> <generator class="native" /> </id> - <property type="NHibernate.Test.Linq.Entities.Gender, NHibernate.Test" not-null="true" name="Gender" column="[Gender]" /> - <property type="System.DateTime" not-null="true" name="BirthDate" column="[BirthDate]" /> + <property type="NHibernate.Test.Linq.Entities.Gender, NHibernate.Test" not-null="true" name="Gender" column="`Gender`" /> + <property type="System.DateTime" not-null="true" name="BirthDate" column="`BirthDate`" /> <component name="Name" class="PatientName"> - <property type="System.String" not-null="true" name="FirstName" column="[FirstName]" /> - <property type="System.String" not-null="true" name="LastName" column="[LastName]" /> + <property type="System.String" not-null="true" name="FirstName" column="`FirstName`" /> + <property type="System.String" not-null="true" name="LastName" column="`LastName`" /> </component> <component name="Address" class="PatientAddress"> - <property type="System.String" name="AddressLine1" column="[AddressLine1]" /> + <property type="System.String" name="AddressLine1" column="`AddressLine1`" /> - <property type="System.String" name="AddressLine2" column="[AddressLine2]" /> + <property type="System.String" name="AddressLine2" column="`AddressLine2`" /> - <property type="System.String" name="City" column="[City]" /> + <property type="System.String" name="City" column="`City`" /> <many-to-one name="State" cascade="none" column="StateId" class="State" /> - <property type="System.String" name="ZipCode" column="[ZipCode]" /> + <property type="System.String" name="ZipCode" column="`ZipCode`" /> </component> @@ -53,7 +53,7 @@ <id name="Id" column="StateId" type="System.Int64"> <generator class="native" /> </id> - <property type="System.String" not-null="true" name="Abbreviation" column="[Abbreviation]" /> - <property type="System.String" not-null="true" name="FullName" column="[FullName]" /> + <property type="System.String" not-null="true" name="Abbreviation" column="`Abbreviation`" /> + <property type="System.String" not-null="true" name="FullName" column="`FullName`" /> </class> </hibernate-mapping> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |