Hibernate version: 1.0.2
Name and version of the database you are using:ms sql server 2000
I use nhibernate as dao layer and it works well ,but I get a problem when I user sql profiler to watch sql server:when I get some data from a table (use query),nhibernate always executes some update statements after executing select. I dont know why ? I just map a class(ClassA) to a table ,this class reference another class(ClassB),such as:
class ClassA
{
private int id;
public int Id{get {return id;}set{id=value;}}
private ClassB refB;
public ClassB RefB
{
get{return refB;}
set{refB=value;}
}
....
}
class ClassB
{
....
}
and the map file is defined as following:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.0">
<class name="ClassA" table="ea">
<id name="Id" column="Id">
<generator class="identity"/>
</id>
<many-to-one name="RefB" class="ClassB" cascade="none" >
<column name="B_code"/>
</many-to-one>
...
</hibernate-mapping >
help me,please!
|