Skip to content

Commit ff1a7b0

Browse files
committed
latest NH version - all tests pass
1 parent d222066 commit ff1a7b0

File tree

3 files changed

+46
-8
lines changed

3 files changed

+46
-8
lines changed

tools/NHibernate/NHibernate.dll

332 KB
Binary file not shown.

tools/NHibernate/NHibernate.pdb

1.46 MB
Binary file not shown.

tools/NHibernate/NHibernate.xml

Lines changed: 46 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29669,6 +29669,11 @@
2966929669
Util extensions to use in your test or where you need to see the XML mappings
2967029670
</summary>
2967129671
</member>
29672+
<member name="T:NHibernate.Mapping.ByCode.PropertyPath">
29673+
<summary>
29674+
Immutable value class. By-value equality.
29675+
</summary>
29676+
</member>
2967229677
<member name="M:NHibernate.Mapping.ByCode.PropertyPathExtensions.InverseProgressivePath(NHibernate.Mapping.ByCode.PropertyPath)">
2967329678
<summary>
2967429679
Provide the list of progressive-paths
@@ -37140,8 +37145,30 @@
3714037145
<summary>
3714137146
Run the schema creation script
3714237147
</summary>
37143-
<param name="script"><see langword="true"/> if the ddl should be outputted in the Console.</param>
37144-
<param name="export"><see langword="true"/> if the ddl should be executed against the Database.</param>
37148+
<param name="useStdOut"><see langword="true"/> if the ddl should be outputted in the Console.</param>
37149+
<param name="execute"><see langword="true"/> if the ddl should be executed against the Database.</param>
37150+
<remarks>
37151+
This is a convenience method that calls <see cref="M:NHibernate.Tool.hbm2ddl.SchemaExport.Execute(System.Boolean,System.Boolean,System.Boolean)"/> and sets
37152+
the justDrop parameter to false.
37153+
</remarks>
37154+
</member>
37155+
<member name="M:NHibernate.Tool.hbm2ddl.SchemaExport.Create(System.Action{System.String},System.Boolean)">
37156+
<summary>
37157+
Run the schema creation script
37158+
</summary>
37159+
<param name="scriptAction"> an action that will be called for each line of the generated ddl.</param>
37160+
<param name="execute"><see langword="true"/> if the ddl should be executed against the Database.</param>
37161+
<remarks>
37162+
This is a convenience method that calls <see cref="M:NHibernate.Tool.hbm2ddl.SchemaExport.Execute(System.Boolean,System.Boolean,System.Boolean)"/> and sets
37163+
the justDrop parameter to false.
37164+
</remarks>
37165+
</member>
37166+
<member name="M:NHibernate.Tool.hbm2ddl.SchemaExport.Create(System.IO.TextWriter,System.Boolean)">
37167+
<summary>
37168+
Run the schema creation script
37169+
</summary>
37170+
<param name="exportOutput"> if non-null, the ddl will be written to this TextWriter.</param>
37171+
<param name="execute"><see langword="true"/> if the ddl should be executed against the Database.</param>
3714537172
<remarks>
3714637173
This is a convenience method that calls <see cref="M:NHibernate.Tool.hbm2ddl.SchemaExport.Execute(System.Boolean,System.Boolean,System.Boolean)"/> and sets
3714737174
the justDrop parameter to false.
@@ -37151,19 +37178,30 @@
3715137178
<summary>
3715237179
Run the drop schema script
3715337180
</summary>
37154-
<param name="script"><see langword="true"/> if the ddl should be outputted in the Console.</param>
37155-
<param name="export"><see langword="true"/> if the ddl should be executed against the Database.</param>
37181+
<param name="useStdOut"><see langword="true"/> if the ddl should be outputted in the Console.</param>
37182+
<param name="execute"><see langword="true"/> if the ddl should be executed against the Database.</param>
3715637183
<remarks>
3715737184
This is a convenience method that calls <see cref="M:NHibernate.Tool.hbm2ddl.SchemaExport.Execute(System.Boolean,System.Boolean,System.Boolean)"/> and sets
3715837185
the justDrop parameter to true.
3715937186
</remarks>
3716037187
</member>
37188+
<member name="M:NHibernate.Tool.hbm2ddl.SchemaExport.Drop(System.IO.TextWriter,System.Boolean)">
37189+
<summary>
37190+
Run the drop schema script
37191+
</summary>
37192+
<param name="exportOutput"> if non-null, the ddl will be written to this TextWriter.</param>
37193+
<param name="execute"><see langword="true"/> if the ddl should be executed against the Database.</param>
37194+
<remarks>
37195+
This is a convenience method that calls <see cref="M:NHibernate.Tool.hbm2ddl.SchemaExport.Execute(System.Action{System.String},System.Boolean,System.Boolean,System.IO.TextWriter)"/> and sets
37196+
the justDrop parameter to true.
37197+
</remarks>
37198+
</member>
3716137199
<member name="M:NHibernate.Tool.hbm2ddl.SchemaExport.Execute(System.Boolean,System.Boolean,System.Boolean,System.Data.IDbConnection,System.IO.TextWriter)">
3716237200
<summary>
3716337201
Executes the Export of the Schema in the given connection
3716437202
</summary>
37165-
<param name="script"><see langword="true" /> if the ddl should be outputted in the Console.</param>
37166-
<param name="export"><see langword="true" /> if the ddl should be executed against the Database.</param>
37203+
<param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
37204+
<param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
3716737205
<param name="justDrop"><see langword="true" /> if only the ddl to drop the Database objects should be executed.</param>
3716837206
<param name="connection">
3716937207
The connection to use when executing the commands when export is <see langword="true" />.
@@ -37180,8 +37218,8 @@
3718037218
<summary>
3718137219
Executes the Export of the Schema.
3718237220
</summary>
37183-
<param name="script"><see langword="true" /> if the ddl should be outputted in the Console.</param>
37184-
<param name="export"><see langword="true" /> if the ddl should be executed against the Database.</param>
37221+
<param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
37222+
<param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
3718537223
<param name="justDrop"><see langword="true" /> if only the ddl to drop the Database objects should be executed.</param>
3718637224
<remarks>
3718737225
This method allows for both the drop and create ddl script to be executed.

0 commit comments

Comments
 (0)