fluentnhibernate 1.0.0.0 → 1.0.0.593

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,16 @@
4
4
  <name>FluentNHibernate</name>
5
5
  </assembly>
6
6
  <members>
7
+ <member name="F:FluentNHibernate.AutoMappingExpressions.FindIdentity">
8
+ <summary>
9
+ Determines whether a property is the identity of an entity.
10
+ </summary>
11
+ </member>
12
+ <member name="F:FluentNHibernate.AutoMappingExpressions.AbstractClassIsLayerSupertype">
13
+ <summary>
14
+ Determines whether an abstract class is a layer supertype or part of a mapped inheritance hierarchy.
15
+ </summary>
16
+ </member>
7
17
  <member name="T:FluentNHibernate.Automapping.Alterations.AutoMappingOverrideAlteration">
8
18
  <summary>
9
19
  Built-in alteration for altering an AutoPersistenceModel with instance of IAutoMappingOverride&lt;T&gt;.
@@ -49,6 +59,47 @@
49
59
  </summary>
50
60
  <param name="mapping">Automapping</param>
51
61
  </member>
62
+ <member name="T:FluentNHibernate.Automapping.ITypeSource">
63
+ <summary>
64
+ A source for Type instances, used for locating types that should be
65
+ automapped.
66
+ </summary>
67
+ </member>
68
+ <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
69
+ <summary>
70
+ Defines a property to be used as a key for this composite-id.
71
+ </summary>
72
+ <param name="expression">A member access lambda expression for the property</param>
73
+ <returns>The composite identity part fluent interface</returns>
74
+ </member>
75
+ <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.String)">
76
+ <summary>
77
+ Defines a property to be used as a key for this composite-id with an explicit column name.
78
+ </summary>
79
+ <param name="expression">A member access lambda expression for the property</param>
80
+ <param name="columnName">The column name in the database to use for this key, or null to use the property name</param>
81
+ <returns>The composite identity part fluent interface</returns>
82
+ </member>
83
+ <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyReference(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
84
+ <summary>
85
+ Defines a reference to be used as a many-to-one key for this composite-id with an explicit column name.
86
+ </summary>
87
+ <param name="expression">A member access lambda expression for the property</param>
88
+ <returns>The composite identity part fluent interface</returns>
89
+ </member>
90
+ <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyReference(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.String)">
91
+ <summary>
92
+ Defines a reference to be used as a many-to-one key for this composite-id with an explicit column name.
93
+ </summary>
94
+ <param name="expression">A member access lambda expression for the property</param>
95
+ <param name="columnName">The column name in the database to use for this key, or null to use the property name</param>
96
+ <returns>The composite identity part fluent interface</returns>
97
+ </member>
98
+ <member name="P:FluentNHibernate.Mapping.CompositeIdentityPart`1.Access">
99
+ <summary>
100
+ Set the access and naming strategy for this identity.
101
+ </summary>
102
+ </member>
52
103
  <member name="M:FluentNHibernate.Mapping.ClasslikeMapBase`1.Component``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.Action{FluentNHibernate.Mapping.ComponentPart{``0}})">
53
104
  <summary>
54
105
  Maps a component
@@ -261,16 +312,73 @@
261
312
  </member>
262
313
  <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.Setup(System.Action{FluentNHibernate.AutoMappingExpressions})">
263
314
  <summary>
264
- Setup the auto mapper
315
+ Alter some of the configuration options that control how the automapper works
265
316
  </summary>
266
- <param name="expressionsAction"></param>
267
- <returns></returns>
268
317
  </member>
269
- <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.#ctor(System.Reflection.Assembly)">
318
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.AddEntityAssembly(System.Reflection.Assembly)">
270
319
  <summary>
271
-
320
+ Adds all entities from a specific assembly.
321
+ </summary>
322
+ <param name="assembly">Assembly to load from</param>
323
+ </member>
324
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.AddTypeSource(FluentNHibernate.Automapping.ITypeSource)">
325
+ <summary>
326
+ Adds all entities from the <see cref="T:FluentNHibernate.Automapping.ITypeSource"/>.
327
+ </summary>
328
+ <param name="source"><see cref="T:FluentNHibernate.Automapping.ITypeSource"/> to load from</param>
329
+ </member>
330
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.Override``1(System.Action{FluentNHibernate.Automapping.AutoMapping{``0}})">
331
+ <summary>
332
+ Override the mapping of a specific entity.
333
+ </summary>
334
+ <remarks>This may affect subclasses, depending on the alterations you do.</remarks>
335
+ <typeparam name="T">Entity who's mapping to override</typeparam>
336
+ <param name="populateMap">Lambda performing alterations</param>
337
+ </member>
338
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.OverrideAll(System.Action{FluentNHibernate.Automapping.IPropertyIgnorer})">
339
+ <summary>
340
+ Override all mappings.
341
+ </summary>
342
+ <remarks>Currently only supports ignoring properties on all entities.</remarks>
343
+ <param name="alteration">Lambda performing alterations</param>
344
+ </member>
345
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.IgnoreBase``1">
346
+ <summary>
347
+ Ignore a base type. This removes it from any mapped inheritance hierarchies, good for non-abstract layer
348
+ supertypes.
272
349
  </summary>
273
- <param name="mapAssembly">Assembly Containing Maps</param>
350
+ <typeparam name="T">Type to ignore</typeparam>
351
+ </member>
352
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.IgnoreBase(System.Type)">
353
+ <summary>
354
+ Ignore a base type. This removes it from any mapped inheritance hierarchies, good for non-abstract layer
355
+ supertypes.
356
+ </summary>
357
+ <param name="baseType">Type to ignore</param>
358
+ </member>
359
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.IncludeBase``1">
360
+ <summary>
361
+ Explicitly includes a type to be used as part of a mapped inheritance hierarchy.
362
+ </summary>
363
+ <remarks>
364
+ Abstract classes are probably what you'll be using this method with. Fluent NHibernate considers abstract
365
+ classes to be layer supertypes, so doesn't automatically map them as part of an inheritance hierarchy. You
366
+ can use this method to override that behavior for a specific type; otherwise you should consider using the
367
+ <see cref="F:FluentNHibernate.AutoMappingExpressions.AbstractClassIsLayerSupertype"/> setting.
368
+ </remarks>
369
+ <typeparam name="T">Type to include</typeparam>
370
+ </member>
371
+ <member name="M:FluentNHibernate.Automapping.AutoPersistenceModel.IncludeBase(System.Type)">
372
+ <summary>
373
+ Explicitly includes a type to be used as part of a mapped inheritance hierarchy.
374
+ </summary>
375
+ <remarks>
376
+ Abstract classes are probably what you'll be using this method with. Fluent NHibernate considers abstract
377
+ classes to be layer supertypes, so doesn't automatically map them as part of an inheritance hierarchy. You
378
+ can use this method to override that behavior for a specific type; otherwise you should consider using the
379
+ <see cref="F:FluentNHibernate.AutoMappingExpressions.AbstractClassIsLayerSupertype"/> setting.
380
+ </remarks>
381
+ <param name="baseType">Type to include</param>
274
382
  </member>
275
383
  <member name="P:FluentNHibernate.Automapping.AutoPersistenceModel.Conventions">
276
384
  <summary>
@@ -288,6 +396,12 @@
288
396
  Inverts the next boolean
289
397
  </summary>
290
398
  </member>
399
+ <member name="T:FluentNHibernate.Conventions.IHibernateMappingConvention">
400
+ <summary>
401
+ Convention for the hibernate-mapping container for a class, this can be used to
402
+ set some class-wide settings such as lazy-load and access strategies.
403
+ </summary>
404
+ </member>
291
405
  <member name="T:FluentNHibernate.Conventions.IConvention`2">
292
406
  <summary>
293
407
  Basic convention interface. Don't use directly.
@@ -373,6 +487,13 @@
373
487
  this allows the user to find any columns with the matching name.
374
488
  </summary>
375
489
  </member>
490
+ <member name="M:FluentNHibernate.Conventions.Inspections.ColumnBasedInspector.GetValueFromColumns``1(System.Func{FluentNHibernate.MappingModel.ColumnMapping,System.Object})">
491
+ <summary>
492
+ Gets the requested value off the first column, as all columns are (currently) created equal
493
+ </summary>
494
+ <typeparam name="T"></typeparam>
495
+ <returns></returns>
496
+ </member>
376
497
  <member name="M:FluentNHibernate.Conventions.Instances.GeneratorInstance.Increment">
377
498
  <summary>
378
499
  generates identifiers of any integral type that are unique only when no other
@@ -565,6 +686,16 @@
565
686
  </summary>
566
687
  <param name="paramValues">Params configuration</param>
567
688
  </member>
689
+ <member name="M:FluentNHibernate.Conventions.Instances.GeneratorInstance.Native(System.String)">
690
+ <summary>
691
+ picks identity, sequence or hilo depending upon the capabilities of the underlying database.
692
+ </summary>
693
+ </member>
694
+ <member name="M:FluentNHibernate.Conventions.Instances.GeneratorInstance.Native(System.String,System.Action{FluentNHibernate.Mapping.ParamBuilder})">
695
+ <summary>
696
+ picks identity, sequence or hilo depending upon the capabilities of the underlying database.
697
+ </summary>
698
+ </member>
568
699
  <member name="M:FluentNHibernate.Conventions.Instances.GeneratorInstance.Foreign(System.String)">
569
700
  <summary>
570
701
  uses the identifier of another associated object. Usually used in conjunction with a one-to-one primary key association.
@@ -609,13 +740,6 @@
609
740
  property mappings.
610
741
  </summary>
611
742
  </member>
612
- <member name="M:FluentNHibernate.Conventions.Inspections.PropertyInspector.GetValueFromColumns``1(System.Func{FluentNHibernate.MappingModel.ColumnMapping,System.Object})">
613
- <summary>
614
- Gets the requested value off the first column, as all columns are (currently) created equal
615
- </summary>
616
- <typeparam name="T"></typeparam>
617
- <returns></returns>
618
- </member>
619
743
  <member name="M:FluentNHibernate.Conventions.EnumerableExtensionsForConventions.Contains``1(System.Collections.Generic.IEnumerable{``0},System.String)">
620
744
  <summary>
621
745
  Checks whether a collection contains an inspector identified by the string value.
@@ -662,6 +786,17 @@
662
786
  <param name="collection">Main collection</param>
663
787
  <returns>Many-to-many table name</returns>
664
788
  </member>
789
+ <member name="M:FluentNHibernate.SeparateSubclassVisitor.SortByDistanceFrom(System.Type,System.Collections.Generic.IEnumerable{FluentNHibernate.Mapping.Providers.IIndeterminateSubclassMappingProvider})">
790
+ <summary>
791
+ Takes a type that represents the level in the class/subclass-hiearchy that we're starting from, the parent,
792
+ this can be a class or subclass; also takes a list of subclass providers. The providers are then iterated
793
+ and added to a dictionary key'd by the types "distance" from the parentType; distance being the number of levels
794
+ between parentType and the subclass-type.
795
+ </summary>
796
+ <param name="parentType">Starting point, parent type.</param>
797
+ <param name="providers">List of subclasses</param>
798
+ <returns>Dictionary key'd by the distance from the parentType.</returns>
799
+ </member>
665
800
  <member name="M:FluentNHibernate.Mapping.GeneratorBuilder.Identity">
666
801
  <summary>
667
802
  supports identity columns in DB2, MySQL, MS SQL Server and Sybase.
@@ -1464,11 +1599,6 @@
1464
1599
  <param name="attribute">Instance of attribute found on property.</param>
1465
1600
  <param name="instance">Property with attribute</param>
1466
1601
  </member>
1467
- <member name="T:FluentNHibernate.Conventions.Defaults.CollectionMethodAccessorBackingFieldNamingConvention">
1468
- <summary>
1469
- Base convention for setting the backing field name of a property or method.
1470
- </summary>
1471
- </member>
1472
1602
  <member name="P:FluentNHibernate.Mapping.DynamicComponentPart`1.Access">
1473
1603
  <summary>
1474
1604
  Set the access and naming strategy for this component.
@@ -1611,12 +1741,6 @@
1611
1741
  Inverts the next boolean
1612
1742
  </summary>
1613
1743
  </member>
1614
- <member name="T:FluentNHibernate.Conventions.Defaults.NullableEnumerationPropertyConvention">
1615
- <summary>
1616
- Nullable enum convention. Same behavior as <see cref="T:FluentNHibernate.Conventions.Defaults.EnumerationPropertyConvention"/> but sets the
1617
- property to nullable aswell.
1618
- </summary>
1619
- </member>
1620
1744
  <member name="T:FluentNHibernate.Mapping.AccessStrategyBuilder`1">
1621
1745
  <summary>
1622
1746
  Access strategy mapping builder.
@@ -1737,47 +1861,6 @@
1737
1861
  <param name="exp">Parent reference property</param>
1738
1862
  <returns>Component being mapped</returns>
1739
1863
  </member>
1740
- <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
1741
- <summary>
1742
- Defines a property to be used as a key for this composite-id.
1743
- </summary>
1744
- <param name="expression">A member access lambda expression for the property</param>
1745
- <returns>The composite identity part fluent interface</returns>
1746
- </member>
1747
- <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.String)">
1748
- <summary>
1749
- Defines a property to be used as a key for this composite-id with an explicit column name.
1750
- </summary>
1751
- <param name="expression">A member access lambda expression for the property</param>
1752
- <param name="columnName">The column name in the database to use for this key, or null to use the property name</param>
1753
- <returns>The composite identity part fluent interface</returns>
1754
- </member>
1755
- <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyReference(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
1756
- <summary>
1757
- Defines a reference to be used as a many-to-one key for this composite-id with an explicit column name.
1758
- </summary>
1759
- <param name="expression">A member access lambda expression for the property</param>
1760
- <returns>The composite identity part fluent interface</returns>
1761
- </member>
1762
- <member name="M:FluentNHibernate.Mapping.CompositeIdentityPart`1.KeyReference(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.String)">
1763
- <summary>
1764
- Defines a reference to be used as a many-to-one key for this composite-id with an explicit column name.
1765
- </summary>
1766
- <param name="expression">A member access lambda expression for the property</param>
1767
- <param name="columnName">The column name in the database to use for this key, or null to use the property name</param>
1768
- <returns>The composite identity part fluent interface</returns>
1769
- </member>
1770
- <member name="P:FluentNHibernate.Mapping.CompositeIdentityPart`1.Access">
1771
- <summary>
1772
- Set the access and naming strategy for this identity.
1773
- </summary>
1774
- </member>
1775
- <member name="T:FluentNHibernate.Conventions.Defaults.EnumerationPropertyConvention">
1776
- <summary>
1777
- Specifies a custom type (of <see cref="T:FluentNHibernate.Mapping.GenericEnumMapper`1"/>) for any properties
1778
- that are an enum.
1779
- </summary>
1780
- </member>
1781
1864
  <member name="M:FluentNHibernate.Mapping.IdentityGenerationStrategyBuilder`1.Increment">
1782
1865
  <summary>
1783
1866
  generates identifiers of any integral type that are unique only when no other
@@ -1970,6 +2053,16 @@
1970
2053
  </summary>
1971
2054
  <param name="paramValues">Params configuration</param>
1972
2055
  </member>
2056
+ <member name="M:FluentNHibernate.Mapping.IdentityGenerationStrategyBuilder`1.Native(System.String)">
2057
+ <summary>
2058
+ picks identity, sequence or hilo depending upon the capabilities of the underlying database.
2059
+ </summary>
2060
+ </member>
2061
+ <member name="M:FluentNHibernate.Mapping.IdentityGenerationStrategyBuilder`1.Native(System.String,System.Action{FluentNHibernate.Mapping.ParamBuilder})">
2062
+ <summary>
2063
+ picks identity, sequence or hilo depending upon the capabilities of the underlying database.
2064
+ </summary>
2065
+ </member>
1973
2066
  <member name="M:FluentNHibernate.Mapping.IdentityGenerationStrategyBuilder`1.Foreign(System.String)">
1974
2067
  <summary>
1975
2068
  uses the identifier of another associated object. Usually used in conjunction with a one-to-one primary key association.
@@ -2064,6 +2157,11 @@
2064
2157
  Returns whether the user has set a value for a property.
2065
2158
  </summary>
2066
2159
  </member>
2160
+ <member name="M:FluentNHibernate.MappingModel.AttributeStore`1.IsSpecified(System.String)">
2161
+ <summary>
2162
+ Returns whether the user has set a value for a property.
2163
+ </summary>
2164
+ </member>
2067
2165
  <member name="M:FluentNHibernate.MappingModel.AttributeStore`1.HasValue``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
2068
2166
  <summary>
2069
2167
  Returns whether a property has any value, default or user specified.
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluentnhibernate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 95
4
+ hash: 1277
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 0
10
- - 0
11
- version: 1.0.0.0
10
+ - 593
11
+ version: 1.0.0.593
12
12
  platform: ruby
13
13
  authors:
14
14
  - James Gregory