Skip to content

Commit a97a359

Browse files
author
Oren (electricessence)
committed
Migrating documentation.
1 parent cf5688c commit a97a359

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Extensions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ public static List<DataTable> ToDataTables(this IDbCommand command, CommandBehav
655655
/// Iterates an IDataReader while the predicate returns true.
656656
/// </summary>
657657
/// <param name="reader">The IDataReader to iterate.</param>
658-
/// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
658+
/// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
659659
public static void IterateWhile(this IDataReader reader, Func<IDataRecord, bool> predicate)
660660
{
661661
while (reader.Read() && predicate(reader)) { }
@@ -778,7 +778,7 @@ internal static IEnumerable<object[]> IterateReaderInternal(IDbCommand command,
778778
/// Iterates an IDataReader on a command while the predicate returns true.
779779
/// </summary>
780780
/// <param name="command">The IDbCommand to generate a reader from.</param>
781-
/// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
781+
/// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
782782
/// <param name="behavior">The command behavior for once the command the reader is complete.</param>
783783
public static void IterateReaderWhile(this IDbCommand command, Func<IDataRecord, bool> predicate, CommandBehavior behavior = CommandBehavior.Default)
784784
{
@@ -814,7 +814,7 @@ public static async Task ForEachAsync(this DbCommand command, Action<IDataRecord
814814
/// Asynchronously iterates an IDataReader on a command while the predicate returns true.
815815
/// </summary>
816816
/// <param name="command">The DbCommand to generate a reader from.</param>
817-
/// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
817+
/// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
818818
/// <param name="behavior">The command behavior for once the command the reader is complete.</param>
819819
public static async Task IterateReaderAsyncWhile(this DbCommand command, Func<IDataRecord, bool> predicate, CommandBehavior behavior = CommandBehavior.Default)
820820
{
@@ -826,7 +826,7 @@ public static async Task IterateReaderAsyncWhile(this DbCommand command, Func<ID
826826
/// Asynchronously iterates an IDataReader on a command while the predicate returns true.
827827
/// </summary>
828828
/// <param name="command">The DbCommand to generate a reader from.</param>
829-
/// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
829+
/// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
830830
/// <param name="behavior">The command behavior for once the command the reader is complete.</param>
831831
public static async Task IterateReaderAsyncWhile(this DbCommand command, Func<IDataRecord, Task<bool>> predicate, CommandBehavior behavior = CommandBehavior.Default)
832832
{

Open.Database.Extensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</PropertyGroup>
2323

2424
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
25-
<DocumentationFile>Documentation.xml</DocumentationFile>
25+
<DocumentationFile>docs\Documentation.xml</DocumentationFile>
2626
</PropertyGroup>
2727

2828
<ItemGroup>
Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)