|
4 | 4 |
|
5 | 5 | namespace NHibernate.Mapping
|
6 | 6 | {
|
| 7 | + /// <summary> |
| 8 | + /// Declaration of a System.Type by using the <c><class></c> element. |
| 9 | + /// </summary> |
| 10 | + /// <remarks> |
| 11 | + /// <p>The <c><class></c> element has the following attributes available:</p> |
| 12 | + /// <list type="table"> |
| 13 | + /// <listheader> |
| 14 | + /// <term>Attribute</term> |
| 15 | + /// <description>Possible Values</description> |
| 16 | + /// </listheader> |
| 17 | + /// <item> |
| 18 | + /// <term>name</term> |
| 19 | + /// <description>The fully qualified TypeName so it can be loaded by Reflection</description> |
| 20 | + /// </item> |
| 21 | + /// <item> |
| 22 | + /// <term>table</term> |
| 23 | + /// <description>The name of its database table.</description> |
| 24 | + /// </item> |
| 25 | + /// <item> |
| 26 | + /// <term>discriminator-value</term> |
| 27 | + /// <description> |
| 28 | + /// (optional - defaults to the FullClassName) A value that distinguishes individual |
| 29 | + /// subclasses, used for polymorphic behavior. |
| 30 | + /// </description> |
| 31 | + /// </item> |
| 32 | + /// <item> |
| 33 | + /// <term>mutable</term> |
| 34 | + /// <description> |
| 35 | + /// (optional - defaults to <c>true</c>) Specifies that instances of the class |
| 36 | + /// are (not) mutable. |
| 37 | + /// </description> |
| 38 | + /// </item> |
| 39 | + /// <item> |
| 40 | + /// <term>schema</term> |
| 41 | + /// <description>(optional) Override the schema name specified by the root <c><hibernate-mapping></c> element.</description> |
| 42 | + /// </item> |
| 43 | + /// <item> |
| 44 | + /// <term>proxy</term> |
| 45 | + /// <description> |
| 46 | + /// (optional) Specifies an interface to use for lazy initializing proxies. |
| 47 | + /// You may specify the name of the class itself. |
| 48 | + /// (TODO: update once Proxies are implemented) |
| 49 | + /// </description> |
| 50 | + /// </item> |
| 51 | + /// <item> |
| 52 | + /// <term>dynamic-update</term> |
| 53 | + /// <description> |
| 54 | + /// (optional - defaults to <c>false</c>) Specifies the <c>UPDATE</c> SQL should |
| 55 | + /// be generated at runtime and contain only those columns whose values have changed. |
| 56 | + /// </description> |
| 57 | + /// </item> |
| 58 | + /// <item> |
| 59 | + /// <term>dynamic-insert</term> |
| 60 | + /// <description> |
| 61 | + /// (optional - defaults to <c>false</c>) Specifies the <c>INSERT</c> SQL should |
| 62 | + /// be generated at runtime and contain only those columns whose values are not null. |
| 63 | + /// </description> |
| 64 | + /// </item> |
| 65 | + /// <item> |
| 66 | + /// <term>polymorphism</term> |
| 67 | + /// <description> |
| 68 | + /// (optional, defaults to <c>implicit</c>) Determines whether implicit or explicit |
| 69 | + /// query polymorphism is used. |
| 70 | + /// </description> |
| 71 | + /// </item> |
| 72 | + /// <item> |
| 73 | + /// <term>where</term> |
| 74 | + /// <description> |
| 75 | + /// (optional) Specify an arbitrary SQL <c>WHERE</c> condition to be used |
| 76 | + /// when retrieving objects of this class. |
| 77 | + /// </description> |
| 78 | + /// </item> |
| 79 | + /// <item> |
| 80 | + /// <term>persister</term> |
| 81 | + /// <description>(optional) Specifies a custom <see cref="Persister.IClassPersister"/>.</description> |
| 82 | + /// </item> |
| 83 | + /// </list> |
| 84 | + /// </remarks> |
7 | 85 | public class RootClass : PersistentClass
|
8 | 86 | {
|
9 | 87 | private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(RootClass));
|
@@ -110,12 +188,53 @@ public override bool IsExplicitPolymorphism
|
110 | 188 | set { explicitPolymorphism = value; }
|
111 | 189 | }
|
112 | 190 |
|
| 191 | + /// <summary> |
| 192 | + /// Gets or Sets the <see cref="Property"/> to use as the Version Property |
| 193 | + /// </summary> |
| 194 | + /// <value>The <see cref="Property"/> to use for Versioning.</value> |
| 195 | + /// <remarks> |
| 196 | + /// <para> |
| 197 | + /// The &;tlversion> element is optional and indicates that the table contains versioned data. |
| 198 | + /// This is particularly useful if you plan to use long transactions (see below). |
| 199 | + /// </para> |
| 200 | + /// <para> |
| 201 | + /// <list type="table"> |
| 202 | + /// <listheader> |
| 203 | + /// <term>Attribute</term> |
| 204 | + /// <description>Possible Values</description> |
| 205 | + /// </listheader> |
| 206 | + /// <item> |
| 207 | + /// <term>column</term> |
| 208 | + /// <description> |
| 209 | + /// The name of the <c>column</c> holding the version number. |
| 210 | + /// Defaults to the Property name. |
| 211 | + /// </description> |
| 212 | + /// </item> |
| 213 | + /// <item> |
| 214 | + /// <term>name</term> |
| 215 | + /// <description>The name of the Property in the Persistent Class.</description> |
| 216 | + /// </item> |
| 217 | + /// <item> |
| 218 | + /// <term>type</term> |
| 219 | + /// <description> |
| 220 | + /// The <see cref="Type.IType"/> of the Property. Defaults to an <see cref="Type.Int32Type"/>. It |
| 221 | + /// be any <see cref="Type.IVersionType"/>. |
| 222 | + /// </description> |
| 223 | + /// </item> |
| 224 | + /// </list> |
| 225 | + /// </para> |
| 226 | + /// </remarks> |
113 | 227 | public override Property Version
|
114 | 228 | {
|
115 | 229 | get { return version; }
|
116 | 230 | set { version = value; }
|
117 | 231 | }
|
118 | 232 |
|
| 233 | + /// <summary> |
| 234 | + /// Gets a value indicating if the <see cref="PersistentClass" /> is versioned |
| 235 | + /// by NHibernate. |
| 236 | + /// </summary> |
| 237 | + /// <value><c>true</c> if there is a version property.</value> |
119 | 238 | public override bool IsVersioned
|
120 | 239 | {
|
121 | 240 | get { return version != null; }
|
|
0 commit comments