@@ -26,59 +26,55 @@ namespace NHibernate.Mapping.Attributes
2626 public class BagAttribute : BaseAttribute
2727 {
2828
29- private string _persister = null ;
30-
31- private string _where = null ;
29+ private bool _inversespecified ;
3230
33- private string _schema = null ;
31+ private string _access = null ;
3432
35- private bool _mutablespecified ;
33+ private string _collectiontype = null ;
3634
37- private bool _generic = false ;
35+ private CollectionLazy _lazy = CollectionLazy . Unspecified ;
3836
3937 private string _catalog = null ;
4038
41- private bool _mutable = true ;
42-
4339 private string _orderby = null ;
4440
45- private long _batchsize = - 9223372036854775808 ;
41+ private bool _inverse = false ;
4642
47- private CollectionFetchMode _fetch = CollectionFetchMode . Unspecified ;
43+ private string _table = null ;
4844
49- private string _subselect = null ;
45+ private string _schema = null ;
5046
51- private string _table = null ;
47+ private OuterJoinStrategy _outerjoin = OuterJoinStrategy . Unspecified ;
5248
53- private bool _embedxml = true ;
49+ private bool _optimisticlock = true ;
5450
55- private bool _inverse = false ;
51+ private string _persister = null ;
5652
5753 private string _cascade = null ;
5854
59- private string _name = null ;
55+ private CollectionFetchMode _fetch = CollectionFetchMode . Unspecified ;
6056
61- private string _node = null ;
57+ private bool _genericspecified ;
6258
63- private bool _inversespecified ;
59+ private string _node = null ;
6460
65- private OuterJoinStrategy _outerjoin = OuterJoinStrategy . Unspecified ;
61+ private string _subselect = null ;
6662
67- private CollectionLazy _lazy = CollectionLazy . Unspecified ;
63+ private bool _mutable = true ;
6864
69- private bool _embedxmlspecified ;
65+ private string _name = null ;
7066
71- private string _access = null ;
67+ private bool _mutablespecified ;
7268
73- private bool _genericspecified ;
69+ private string _check = null ;
7470
75- private bool _optimisticlockspecified ;
71+ private long _batchsize = - 9223372036854775808 ;
7672
77- private string _check = null ;
73+ private string _where = null ;
7874
79- private bool _optimisticlock = true ;
75+ private bool _optimisticlockspecified ;
8076
81- private string _collectiontype = null ;
77+ private bool _generic = false ;
8278
8379 /// <summary> Default constructor (position=0) </summary>
8480 public BagAttribute ( ) :
@@ -430,29 +426,6 @@ public virtual string Node
430426 }
431427 }
432428
433- /// <summary> </summary>
434- public virtual bool EmbedXml
435- {
436- get
437- {
438- return this . _embedxml ;
439- }
440- set
441- {
442- this . _embedxml = value ;
443- _embedxmlspecified = true ;
444- }
445- }
446-
447- /// <summary> Tells if EmbedXml has been specified. </summary>
448- public virtual bool EmbedXmlSpecified
449- {
450- get
451- {
452- return this . _embedxmlspecified ;
453- }
454- }
455-
456429 /// <summary>The concrete collection should use a generic version or an object-based version.</summary>
457430 public virtual bool Generic
458431 {
0 commit comments