Provides XML marshalling for classes registered with a SessionFactory

Namespace: NHibernate
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public interface IDatabinder
Visual Basic
Public Interface IDatabinder
Visual C++
public interface class IDatabinder

Remarks

Hibernate defines a generic XML format that may be used to represent any class (hibernate-generic.dtd). The user configures an XSLT stylesheet for marshalling data from this generic format to an application and/or user readable format. By default, Hibernate will use hibernate-default.xslt which maps data to a useful human- readable format.

The property xml.output_stylesheet specifies a user-written stylesheet. Hibernate will attempt to load the stylesheet from the classpath first and if not found, will attempt to load it as a file

It is not intended that implementors be threadsafe

See Also