-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Nhibernate cannot compile mapping file for component mapping
PostPosted: Wed Jan 16, 2008 2:35 pm 
Newbie

Joined: Fri Jan 04, 2008 6:04 pm
Posts: 3
I have a mapping file and I want to use component mapping for a nested class. Nhibernate keeps complaining with the following mapping file saying "Could not compile the mapping document." Anybody know what I'm doing wrong here? Thanks.

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" default-lazy="false" namespace="NHibernate" assembly="NHibernate">
<class name="CampaignObjects.Campaign,Domain" table="advCampaign" lazy="false">
<id name="Id" column="CampaignId" type="Int32" unsaved-value="any">
<generator class="assigned"/>
</id>
<!-- Properties -->
<property column="StatusId" type="Int32" name="Status" not-null="true" />
<property column="CampaignName" type="String" name="Name" not-null="true" length="25" />
<property type="Decimal" name="Budget" column="MaxBudget" not-null="false"/>
<component name="DateRange" class="CampaignObjects.DateRange,Domain">
<property name="Start" type="DateTime" column="StartDate"/>
<property name="End" type="DateTime" column="EndDate"/>
</component>
</class>
</hibernate-mapping>


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jan 18, 2008 7:19 am 
Regular
Regular

Joined: Tue Dec 25, 2007 3:41 pm
Posts: 57
Location: Argentina
This is wrong:
namespace="NHibernate" assembly="NHibernate"

Take a look at documentation or a Quickstart.

Best regards.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
cron
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.