-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathServiceStack.OrmLite.xml
More file actions
5296 lines (5230 loc) · 337 KB
/
ServiceStack.OrmLite.xml
File metadata and controls
5296 lines (5230 loc) · 337 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.OrmLite</name>
</assembly>
<members>
<member name="T:ServiceStack.OrmLite.Dapper.CommandDefinition">
<summary>
Represents the key aspects of a sql operation
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.CommandText">
<summary>
The command (sql or a stored-procedure name) to execute
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.Parameters">
<summary>
The parameters associated with the command
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.Transaction">
<summary>
The active transaction for the command
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.CommandTimeout">
<summary>
The effective timeout for the command
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.CommandType">
<summary>
The type of command that the command-text represents
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.Buffered">
<summary>
Should data be buffered before returning?
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.AddToCache">
<summary>
Should the plan for this query be cached?
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.Flags">
<summary>
Additional state flags against this command
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.Pipelined">
<summary>
Can async queries be pipelined?
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.CommandDefinition.#ctor(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType},ServiceStack.OrmLite.Dapper.CommandFlags,System.Threading.CancellationToken)">
<summary>
Initialize the command definition
</summary>
<param name="commandText">The text for this command.</param>
<param name="parameters">The parameters for this command.</param>
<param name="transaction">The transaction for this command to participate in.</param>
<param name="commandTimeout">The timeout (in seconds) for this command.</param>
<param name="commandType">The <see cref="P:ServiceStack.OrmLite.Dapper.CommandDefinition.CommandType"/> for this command.</param>
<param name="flags">The behavior flags for this command.</param>
<param name="cancellationToken">The cancellation token for this command.</param>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.CommandDefinition.CancellationToken">
<summary>
For asynchronous operations, the cancellation-token
</summary>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.CommandFlags">
<summary>
Additional state flags that control command behaviour
</summary>
</member>
<member name="F:ServiceStack.OrmLite.Dapper.CommandFlags.None">
<summary>
No additional flags
</summary>
</member>
<member name="F:ServiceStack.OrmLite.Dapper.CommandFlags.Buffered">
<summary>
Should data be buffered before returning?
</summary>
</member>
<member name="F:ServiceStack.OrmLite.Dapper.CommandFlags.Pipelined">
<summary>
Can async queries be pipelined?
</summary>
</member>
<member name="F:ServiceStack.OrmLite.Dapper.CommandFlags.NoCache">
<summary>
Should the plan cache be bypassed?
</summary>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.CustomPropertyTypeMap">
<summary>
Implements custom property mapping by user provided criteria (usually presence of some custom attribute with column to member mapping)
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.CustomPropertyTypeMap.#ctor(System.Type,System.Func{System.Type,System.String,System.Reflection.PropertyInfo})">
<summary>
Creates custom property mapping
</summary>
<param name="type">Target entity type</param>
<param name="propertySelector">Property selector based on target type and DataReader column name</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.CustomPropertyTypeMap.FindConstructor(System.String[],System.Type[])">
<summary>
Always returns default constructor
</summary>
<param name="names">DataReader column names</param>
<param name="types">DataReader column types</param>
<returns>Default constructor</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.CustomPropertyTypeMap.FindExplicitConstructor">
<summary>
Always returns null
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.CustomPropertyTypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo,System.String)">
<summary>
Not implemented as far as default constructor used for all cases
</summary>
<param name="constructor"></param>
<param name="columnName"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.CustomPropertyTypeMap.GetMember(System.String)">
<summary>
Returns property based on selector strategy
</summary>
<param name="columnName">DataReader column name</param>
<returns>Poperty member map</returns>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.DbString">
<summary>
This class represents a SQL string, it can be used if you need to denote your parameter is a Char vs VarChar vs nVarChar vs nChar
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DbString.IsAnsiDefault">
<summary>
Default value for IsAnsi.
</summary>
</member>
<member name="F:ServiceStack.OrmLite.Dapper.DbString.DefaultLength">
<summary>
A value to set the default value of strings
going through Dapper. Default is 4000, any value larger than this
field will not have the default value applied.
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DbString.#ctor">
<summary>
Create a new DbString
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DbString.IsAnsi">
<summary>
Ansi vs Unicode
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DbString.IsFixedLength">
<summary>
Fixed length
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DbString.Length">
<summary>
Length of the string -1 for max
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DbString.Value">
<summary>
The value of the string
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DbString.AddParameter(System.Data.IDbCommand,System.String)">
<summary>
Add the parameter to the command... internal use only
</summary>
<param name="command"></param>
<param name="name"></param>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.DefaultTypeMap">
<summary>
Represents default type mapping strategy used by Dapper
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DefaultTypeMap.#ctor(System.Type)">
<summary>
Creates default type map
</summary>
<param name="type">Entity type</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DefaultTypeMap.FindConstructor(System.String[],System.Type[])">
<summary>
Finds best constructor
</summary>
<param name="names">DataReader column names</param>
<param name="types">DataReader column types</param>
<returns>Matching constructor or default one</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DefaultTypeMap.FindExplicitConstructor">
<summary>
Returns the constructor, if any, that has the ExplicitConstructorAttribute on it.
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DefaultTypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo,System.String)">
<summary>
Gets mapping for constructor parameter
</summary>
<param name="constructor">Constructor to resolve</param>
<param name="columnName">DataReader column name</param>
<returns>Mapping implementation</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DefaultTypeMap.GetMember(System.String)">
<summary>
Gets member mapping for column
</summary>
<param name="columnName">DataReader column name</param>
<returns>Mapping implementation</returns>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DefaultTypeMap.MatchNamesWithUnderscores">
<summary>
Should column names like User_Id be allowed to match properties/fields like UserId ?
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DefaultTypeMap.Properties">
<summary>
The settable properties for this typemap
</summary>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.DynamicParameters">
<summary>
A bag of parameters that can be passed to the Dapper Query and Execute methods
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.#ctor">
<summary>
construct a dynamic parameter bag
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.#ctor(System.Object)">
<summary>
construct a dynamic parameter bag
</summary>
<param name="template">can be an anonymous type or a DynamicParameters bag</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.AddDynamicParams(System.Object)">
<summary>
Append a whole object full of params to the dynamic
EG: AddDynamicParams(new {A = 1, B = 2}) // will add property A and B to the dynamic
</summary>
<param name="param"></param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.Add(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32})">
<summary>
Add a parameter to this dynamic parameter list.
</summary>
<param name="name">The name of the parameter.</param>
<param name="value">The value of the parameter.</param>
<param name="dbType">The type of the parameter.</param>
<param name="direction">The in or out direction of the parameter.</param>
<param name="size">The size of the parameter.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.Add(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte})">
<summary>
Add a parameter to this dynamic parameter list.
</summary>
<param name="name">The name of the parameter.</param>
<param name="value">The value of the parameter.</param>
<param name="dbType">The type of the parameter.</param>
<param name="direction">The in or out direction of the parameter.</param>
<param name="size">The size of the parameter.</param>
<param name="precision">The precision of the parameter.</param>
<param name="scale">The scale of the parameter.</param>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DynamicParameters.RemoveUnused">
<summary>
If true, the command-text is inspected and only values that are clearly used are included on the connection
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.AddParameters(System.Data.IDbCommand,ServiceStack.OrmLite.Dapper.SqlMapper.Identity)">
<summary>
Add all the parameters needed to the command just before it executes
</summary>
<param name="command">The raw command prior to execution</param>
<param name="identity">Information about the query</param>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.DynamicParameters.ParameterNames">
<summary>
All the names of the param in the bag, use Get to yank them out
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.Get``1(System.String)">
<summary>
Get the value of a parameter
</summary>
<typeparam name="T"></typeparam>
<param name="name"></param>
<returns>The value, note DBNull.Value is not returned, instead the value is returned as null</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.DynamicParameters.Output``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.Nullable{System.Data.DbType},System.Nullable{System.Int32})">
<summary>
Allows you to automatically populate a target property/field from output parameters. It actually
creates an InputOutput parameter, so you can still pass data in.
</summary>
<typeparam name="T"></typeparam>
<param name="target">The object whose property/field you wish to populate.</param>
<param name="expression">A MemberExpression targeting a property/field of the target (or descendant thereof.)</param>
<param name="dbType"></param>
<param name="size">The size to set on the parameter. Defaults to 0, or DbString.DefaultLength in case of strings.</param>
<returns>The DynamicParameters instance</returns>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.ExplicitConstructorAttribute">
<summary>
Tell Dapper to use an explicit constructor, passing nulls or 0s for all parameters
</summary>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.FeatureSupport">
<summary>
Handles variances in features per DBMS
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.FeatureSupport.Get(System.Data.IDbConnection)">
<summary>
Gets the feature set based on the passed connection
</summary>
<param name="connection">The connection to get supported features for.</param>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.FeatureSupport.Arrays">
<summary>
True if the db supports array columns e.g. Postgresql
</summary>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.SimpleMemberMap">
<summary>
Represents simple member map for one of target parameter or property or field to source DataReader column
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SimpleMemberMap.#ctor(System.String,System.Reflection.PropertyInfo)">
<summary>
Creates instance for simple property mapping
</summary>
<param name="columnName">DataReader column name</param>
<param name="property">Target property</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SimpleMemberMap.#ctor(System.String,System.Reflection.FieldInfo)">
<summary>
Creates instance for simple field mapping
</summary>
<param name="columnName">DataReader column name</param>
<param name="field">Target property</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SimpleMemberMap.#ctor(System.String,System.Reflection.ParameterInfo)">
<summary>
Creates instance for simple constructor parameter mapping
</summary>
<param name="columnName">DataReader column name</param>
<param name="parameter">Target constructor parameter</param>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.SimpleMemberMap.ColumnName">
<summary>
DataReader column name
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.SimpleMemberMap.MemberType">
<summary>
Target member type
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.SimpleMemberMap.Property">
<summary>
Target property
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.SimpleMemberMap.Field">
<summary>
Target field
</summary>
</member>
<member name="P:ServiceStack.OrmLite.Dapper.SimpleMemberMap.Parameter">
<summary>
Target constructor parameter
</summary>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.SqlDataRecordListTVPParameter">
<summary>
Used to pass a IEnumerable<SqlDataRecord> as a SqlDataRecordListTVPParameter
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlDataRecordListTVPParameter.#ctor(System.Collections.Generic.IEnumerable{Microsoft.SqlServer.Server.SqlDataRecord},System.String)">
<summary>
Create a new instance of <see cref="T:ServiceStack.OrmLite.Dapper.SqlDataRecordListTVPParameter"/>.
</summary>
<param name="data">The data records to convert into TVPs.</param>
<param name="typeName">The parameter type name.</param>
</member>
<member name="T:ServiceStack.OrmLite.Dapper.SqlMapper">
<summary>
Dapper, a light weight object mapper for ADO.NET
</summary>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<remarks>Note: each row can be accessed via "dynamic", or by casting to an IDictionary<string,object></remarks>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
<remarks>Note: each row can be accessed via "dynamic", or by casting to an IDictionary<string,object></remarks>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
<remarks>Note: the row can be accessed via "dynamic", or by casting to an IDictionary<string,object></remarks>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstOrDefaultAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
<remarks>Note: the row can be accessed via "dynamic", or by casting to an IDictionary<string,object></remarks>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
<remarks>Note: the row can be accessed via "dynamic", or by casting to an IDictionary<string,object></remarks>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleOrDefaultAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
<remarks>Note: the row can be accessed via "dynamic", or by casting to an IDictionary<string,object></remarks>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type of results to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<returns>
A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstAsync``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type of result to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstOrDefaultAsync``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type of result to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleAsync``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type of result to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleOrDefaultAsync``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstOrDefaultAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleOrDefaultAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstAsync(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstOrDefaultAsync(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleAsync(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleOrDefaultAsync(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="sql">The SQL to execute for the query.</param>
<param name="param">The parameters to pass, if any.</param>
<param name="transaction">The transaction to use, if any.</param>
<param name="commandTimeout">The command timeout (in seconds).</param>
<param name="commandType">The type of command to execute.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``1(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
<returns>
A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync(System.Data.IDbConnection,System.Type,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstAsync(System.Data.IDbConnection,System.Type,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstAsync``1(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstOrDefaultAsync(System.Data.IDbConnection,System.Type,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryFirstOrDefaultAsync``1(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleAsync(System.Data.IDbConnection,System.Type,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleAsync``1(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleOrDefaultAsync(System.Data.IDbConnection,System.Type,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="type">The type to return.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QuerySingleOrDefaultAsync``1(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a single-row query asynchronously using .NET 4.5 Task.
</summary>
<typeparam name="T">The type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="command">The command used to query on this connection.</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.ExecuteAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a command asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>The number of rows affected.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.ExecuteAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a command asynchronously using .NET 4.5 Task.
</summary>
<param name="cnn">The connection to execute on.</param>
<param name="command">The command to execute on this connection.</param>
<returns>The number of rows affected.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``3(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with 2 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``3(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition,System.Func{``0,``1,``2},System.String)">
<summary>
Perform a asynchronous multi-mapping query with 2 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="command">The command to execute.</param>
<param name="map">The function to map row types to the return type.</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``4(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with 3 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``4(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition,System.Func{``0,``1,``2,``3},System.String)">
<summary>
Perform a asynchronous multi-mapping query with 3 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="command">The command to execute.</param>
<param name="map">The function to map row types to the return type.</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``5(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with 4 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``5(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition,System.Func{``0,``1,``2,``3,``4},System.String)">
<summary>
Perform a asynchronous multi-mapping query with 4 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="command">The command to execute.</param>
<param name="map">The function to map row types to the return type.</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``6(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with 5 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TFifth">The fifth type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``6(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition,System.Func{``0,``1,``2,``3,``4,``5},System.String)">
<summary>
Perform a asynchronous multi-mapping query with 5 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TFifth">The fifth type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="command">The command to execute.</param>
<param name="map">The function to map row types to the return type.</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``7(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5,``6},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with 6 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TFifth">The fifth type in the recordset.</typeparam>
<typeparam name="TSixth">The sixth type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``7(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition,System.Func{``0,``1,``2,``3,``4,``5,``6},System.String)">
<summary>
Perform a asynchronous multi-mapping query with 6 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TFifth">The fifth type in the recordset.</typeparam>
<typeparam name="TSixth">The sixth type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="command">The command to execute.</param>
<param name="map">The function to map row types to the return type.</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``8(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5,``6,``7},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with 7 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TFifth">The fifth type in the recordset.</typeparam>
<typeparam name="TSixth">The sixth type in the recordset.</typeparam>
<typeparam name="TSeventh">The seventh type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``8(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition,System.Func{``0,``1,``2,``3,``4,``5,``6,``7},System.String)">
<summary>
Perform an asynchronous multi-mapping query with 7 input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TFirst">The first type in the recordset.</typeparam>
<typeparam name="TSecond">The second type in the recordset.</typeparam>
<typeparam name="TThird">The third type in the recordset.</typeparam>
<typeparam name="TFourth">The fourth type in the recordset.</typeparam>
<typeparam name="TFifth">The fifth type in the recordset.</typeparam>
<typeparam name="TSixth">The sixth type in the recordset.</typeparam>
<typeparam name="TSeventh">The seventh type in the recordset.</typeparam>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="command">The command to execute.</param>
<param name="map">The function to map row types to the return type.</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryAsync``1(System.Data.IDbConnection,System.String,System.Type[],System.Func{System.Object[],``0},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a asynchronous multi-mapping query with an arbitrary number of input types.
This returns a single type, combined from the raw types via <paramref name="map"/>.
</summary>
<typeparam name="TReturn">The combined type to return.</typeparam>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="types">Array of types in the recordset.</param>
<param name="map">The function to map row types to the return type.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="buffered">Whether to buffer the results in memory.</param>
<param name="splitOn">The field we should split and read the second object from (default: "Id").</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns>An enumerable of <typeparamref name="TReturn"/>.</returns>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryMultipleAsync(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a command that returns multiple result sets, and access each in turn.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="sql">The SQL to execute for this query.</param>
<param name="param">The parameters to use for this query.</param>
<param name="transaction">The transaction to use for this query.</param>
<param name="commandTimeout">Number of seconds before command execution timeout.</param>
<param name="commandType">Is it a stored proc or a batch?</param>
</member>
<member name="M:ServiceStack.OrmLite.Dapper.SqlMapper.QueryMultipleAsync(System.Data.IDbConnection,ServiceStack.OrmLite.Dapper.CommandDefinition)">
<summary>
Execute a command that returns multiple result sets, and access each in turn.
</summary>
<param name="cnn">The connection to query on.</param>
<param name="command">The command to execute for this query.</param>