Tagged Questions
2
votes
1answer
655 views
How to Map oracle datatype SYS.XMLTYPE in Nhiberbate
I have a table in oracle having column of datatType SYS.XMLTYPE and have to map it in Nhibernate hbm to retrieve the XML. I am using C# with .net framework 3.5 is there any specific dataType ...
0
votes
1answer
17 views
Fluent NHibernate Mapping XDocument property to Oracle XMLType
I am looking for the best way to map from an XDocument property type to an Oracle XMLType? I am mapping to a legacy database and have no control over the schema. It is Oracle 9i.
I have read that ...
0
votes
1answer
101 views
NHibernate Merge problem with XMLType
I have a class that contains a property of type XmlElement.
The property is mapped as following:
<property name="XamlForm" column="XamlForm" type="KTN.Base.Data.Types.XmlType, KTN.Base.Data" />
...