Skip to content

Commit 6275d65

Browse files
committed
1.13.0
1 parent 11f9bed commit 6275d65

File tree

3 files changed

+80
-3
lines changed

3 files changed

+80
-3
lines changed

doc/api/DirectSQL.SqlResult.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,67 @@ <h3 id="methods">Methods
292292
</h3>
293293

294294

295+
<a id="DirectSQL_SqlResult_AsEnumerable_" data-uid="DirectSQL.SqlResult.AsEnumerable*"></a>
296+
<h4 id="DirectSQL_SqlResult_AsEnumerable__1_System_Func_System_Object___0__" data-uid="DirectSQL.SqlResult.AsEnumerable``1(System.Func{System.Object,``0})">AsEnumerable&lt;T&gt;(Func&lt;Object, T&gt;)</h4>
297+
<div class="markdown level1 summary"><p>Return enumerable of SqlResult</p>
298+
</div>
299+
<div class="markdown level1 conceptual"></div>
300+
<h5 class="decalaration">Declaration</h5>
301+
<div class="codewrapper">
302+
<pre><code class="lang-csharp hljs">public IEnumerable&lt;T&gt; AsEnumerable&lt;T&gt;(Func&lt;dynamic, T&gt; convert)</code></pre>
303+
</div>
304+
<h5 class="parameters">Parameters</h5>
305+
<table class="table table-bordered table-striped table-condensed">
306+
<thead>
307+
<tr>
308+
<th>Type</th>
309+
<th>Name</th>
310+
<th>Description</th>
311+
</tr>
312+
</thead>
313+
<tbody>
314+
<tr>
315+
<td><span class="xref">System.Func</span>&lt;<span class="xref">System.Object</span>, T&gt;</td>
316+
<td><span class="parametername">convert</span></td>
317+
<td><p>Convert from dynamic to T</p>
318+
</td>
319+
</tr>
320+
</tbody>
321+
</table>
322+
<h5 class="returns">Returns</h5>
323+
<table class="table table-bordered table-striped table-condensed">
324+
<thead>
325+
<tr>
326+
<th>Type</th>
327+
<th>Description</th>
328+
</tr>
329+
</thead>
330+
<tbody>
331+
<tr>
332+
<td><span class="xref">System.Collections.Generic.IEnumerable</span>&lt;T&gt;</td>
333+
<td><p>Object which enumerate result of SqlResult</p>
334+
</td>
335+
</tr>
336+
</tbody>
337+
</table>
338+
<h5 class="typeParameters">Type Parameters</h5>
339+
<table class="table table-bordered table-striped table-condensed">
340+
<thead>
341+
<tr>
342+
<th>Name</th>
343+
<th>Description</th>
344+
</tr>
345+
</thead>
346+
<tbody>
347+
<tr>
348+
<td><span class="parametername">T</span></td>
349+
<td><p>Type of object to be enumerated</p>
350+
</td>
351+
</tr>
352+
</tbody>
353+
</table>
354+
355+
295356
<a id="DirectSQL_SqlResult_Dispose_" data-uid="DirectSQL.SqlResult.Dispose*"></a>
296357
<h4 id="DirectSQL_SqlResult_Dispose" data-uid="DirectSQL.SqlResult.Dispose">Dispose()</h4>
297358
<div class="markdown level1 summary"><p>Dispose resources.</p>

manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
"output": {
190190
".html": {
191191
"relative_path": "doc/api/DirectSQL.SqlResult.html",
192-
"hash": "u7IeqUnFJEq9QnMLtU7tFQ=="
192+
"hash": "W60jOrQd6qb35jbHl9aL+w=="
193193
}
194194
},
195195
"is_incremental": true,
@@ -316,11 +316,11 @@
316316
"details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.",
317317
"incrementalPhase": "build"
318318
},
319-
"ConceptualDocumentProcessor": {
319+
"ManagedReferenceDocumentProcessor": {
320320
"can_incremental": true,
321321
"incrementalPhase": "build"
322322
},
323-
"ManagedReferenceDocumentProcessor": {
323+
"ConceptualDocumentProcessor": {
324324
"can_incremental": true,
325325
"incrementalPhase": "build"
326326
}

xrefmap.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,22 @@ references:
441441
commentId: T:DirectSQL.SqlResult
442442
fullName: DirectSQL.SqlResult
443443
nameWithType: SqlResult
444+
- uid: DirectSQL.SqlResult.AsEnumerable*
445+
name: AsEnumerable
446+
href: doc/api/DirectSQL.SqlResult.html#DirectSQL_SqlResult_AsEnumerable_
447+
commentId: Overload:DirectSQL.SqlResult.AsEnumerable
448+
isSpec: "True"
449+
fullName: DirectSQL.SqlResult.AsEnumerable
450+
nameWithType: SqlResult.AsEnumerable
451+
- uid: DirectSQL.SqlResult.AsEnumerable``1(System.Func{System.Object,``0})
452+
name: AsEnumerable<T>(Func<Object, T>)
453+
href: doc/api/DirectSQL.SqlResult.html#DirectSQL_SqlResult_AsEnumerable__1_System_Func_System_Object___0__
454+
commentId: M:DirectSQL.SqlResult.AsEnumerable``1(System.Func{System.Object,``0})
455+
name.vb: AsEnumerable(Of T)(Func(Of Object, T))
456+
fullName: DirectSQL.SqlResult.AsEnumerable<T>(System.Func<System.Object, T>)
457+
fullName.vb: DirectSQL.SqlResult.AsEnumerable(Of T)(System.Func(Of System.Object, T))
458+
nameWithType: SqlResult.AsEnumerable<T>(Func<Object, T>)
459+
nameWithType.vb: SqlResult.AsEnumerable(Of T)(Func(Of Object, T))
444460
- uid: DirectSQL.SqlResult.Command
445461
name: Command
446462
href: doc/api/DirectSQL.SqlResult.html#DirectSQL_SqlResult_Command

0 commit comments

Comments
 (0)