-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxrefmap.yml
More file actions
1143 lines (1143 loc) · 73.9 KB
/
xrefmap.yml
File metadata and controls
1143 lines (1143 loc) · 73.9 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
### YamlMime:XRefMap
sorted: true
references:
- uid: DirectSQL
name: DirectSQL
href: doc/api/DirectSQL.html
commentId: N:DirectSQL
fullName: DirectSQL
nameWithType: DirectSQL
- uid: DirectSQL.AsyncConnectExecution`1
name: AsyncConnectExecution<C>
href: doc/api/DirectSQL.AsyncConnectExecution-1.html
commentId: T:DirectSQL.AsyncConnectExecution`1
name.vb: AsyncConnectExecution(Of C)
fullName: DirectSQL.AsyncConnectExecution<C>
fullName.vb: DirectSQL.AsyncConnectExecution(Of C)
nameWithType: AsyncConnectExecution<C>
nameWithType.vb: AsyncConnectExecution(Of C)
- uid: DirectSQL.AsyncSqlExecution`2
name: AsyncSqlExecution<C, T>
href: doc/api/DirectSQL.AsyncSqlExecution-2.html
commentId: T:DirectSQL.AsyncSqlExecution`2
name.vb: AsyncSqlExecution(Of C, T)
fullName: DirectSQL.AsyncSqlExecution<C, T>
fullName.vb: DirectSQL.AsyncSqlExecution(Of C, T)
nameWithType: AsyncSqlExecution<C, T>
nameWithType.vb: AsyncSqlExecution(Of C, T)
- uid: DirectSQL.ConnectExecution`1
name: ConnectExecution<C>
href: doc/api/DirectSQL.ConnectExecution-1.html
commentId: T:DirectSQL.ConnectExecution`1
name.vb: ConnectExecution(Of C)
fullName: DirectSQL.ConnectExecution<C>
fullName.vb: DirectSQL.ConnectExecution(Of C)
nameWithType: ConnectExecution<C>
nameWithType.vb: ConnectExecution(Of C)
- uid: DirectSQL.Database`5
name: Database<C, T, CMD, R, P>
href: doc/api/DirectSQL.Database-5.html
commentId: T:DirectSQL.Database`5
name.vb: Database(Of C, T, CMD, R, P)
fullName: DirectSQL.Database<C, T, CMD, R, P>
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P)
nameWithType: Database<C, T, CMD, R, P>
nameWithType.vb: Database(Of C, T, CMD, R, P)
- uid: DirectSQL.Database`5.ConvertToDbParameter(System.ValueTuple{System.String,System.Object}[])
name: ConvertToDbParameter((String name, Object value)[])
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ConvertToDbParameter_System_ValueTuple_System_String_System_Object____
commentId: M:DirectSQL.Database`5.ConvertToDbParameter(System.ValueTuple{System.String,System.Object}[])
name.vb: ConvertToDbParameter((name As String, value As Object)())
fullName: DirectSQL.Database<C, T, CMD, R, P>.ConvertToDbParameter(System.ValueTuple<System.String, System.Object>[])
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ConvertToDbParameter(System.ValueTuple(Of System.String, System.Object)())
nameWithType: Database<C, T, CMD, R, P>.ConvertToDbParameter((String name, Object value)[])
nameWithType.vb: Database(Of C, T, CMD, R, P).ConvertToDbParameter((name As String, value As Object)())
- uid: DirectSQL.Database`5.ConvertToDbParameter*
name: ConvertToDbParameter
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ConvertToDbParameter_
commentId: Overload:DirectSQL.Database`5.ConvertToDbParameter
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ConvertToDbParameter
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ConvertToDbParameter
nameWithType: Database<C, T, CMD, R, P>.ConvertToDbParameter
nameWithType.vb: Database(Of C, T, CMD, R, P).ConvertToDbParameter
- uid: DirectSQL.Database`5.CreateConnection
name: CreateConnection()
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_CreateConnection
commentId: M:DirectSQL.Database`5.CreateConnection
fullName: DirectSQL.Database<C, T, CMD, R, P>.CreateConnection()
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).CreateConnection()
nameWithType: Database<C, T, CMD, R, P>.CreateConnection()
nameWithType.vb: Database(Of C, T, CMD, R, P).CreateConnection()
- uid: DirectSQL.Database`5.CreateConnection*
name: CreateConnection
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_CreateConnection_
commentId: Overload:DirectSQL.Database`5.CreateConnection
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.CreateConnection
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).CreateConnection
nameWithType: Database<C, T, CMD, R, P>.CreateConnection
nameWithType.vb: Database(Of C, T, CMD, R, P).CreateConnection
- uid: DirectSQL.Database`5.CreateParameter(System.String,System.Object)
name: CreateParameter(String, Object)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_CreateParameter_System_String_System_Object_
commentId: M:DirectSQL.Database`5.CreateParameter(System.String,System.Object)
fullName: DirectSQL.Database<C, T, CMD, R, P>.CreateParameter(System.String, System.Object)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).CreateParameter(System.String, System.Object)
nameWithType: Database<C, T, CMD, R, P>.CreateParameter(String, Object)
nameWithType.vb: Database(Of C, T, CMD, R, P).CreateParameter(String, Object)
- uid: DirectSQL.Database`5.CreateParameter(System.String,System.Object,DbType)
name: CreateParameter(String, Object, DbType)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_CreateParameter_System_String_System_Object_DbType_
commentId: M:DirectSQL.Database`5.CreateParameter(System.String,System.Object,DbType)
fullName: DirectSQL.Database<C, T, CMD, R, P>.CreateParameter(System.String, System.Object, DbType)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).CreateParameter(System.String, System.Object, DbType)
nameWithType: Database<C, T, CMD, R, P>.CreateParameter(String, Object, DbType)
nameWithType.vb: Database(Of C, T, CMD, R, P).CreateParameter(String, Object, DbType)
- uid: DirectSQL.Database`5.CreateParameter*
name: CreateParameter
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_CreateParameter_
commentId: Overload:DirectSQL.Database`5.CreateParameter
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.CreateParameter
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).CreateParameter
nameWithType: Database<C, T, CMD, R, P>.CreateParameter
nameWithType.vb: Database(Of C, T, CMD, R, P).CreateParameter
- uid: DirectSQL.Database`5.ExecuteFormattableNonQuery(System.FormattableString,`0)
name: ExecuteFormattableNonQuery(FormattableString, C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteFormattableNonQuery_System_FormattableString__0_
commentId: M:DirectSQL.Database`5.ExecuteFormattableNonQuery(System.FormattableString,`0)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteFormattableNonQuery(System.FormattableString, C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteFormattableNonQuery(System.FormattableString, C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteFormattableNonQuery(FormattableString, C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteFormattableNonQuery(FormattableString, C)
- uid: DirectSQL.Database`5.ExecuteFormattableNonQuery(System.FormattableString,`0,`1)
name: ExecuteFormattableNonQuery(FormattableString, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteFormattableNonQuery_System_FormattableString__0__1_
commentId: M:DirectSQL.Database`5.ExecuteFormattableNonQuery(System.FormattableString,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteFormattableNonQuery(System.FormattableString, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteFormattableNonQuery(System.FormattableString, C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteFormattableNonQuery(FormattableString, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteFormattableNonQuery(FormattableString, C, T)
- uid: DirectSQL.Database`5.ExecuteFormattableNonQuery*
name: ExecuteFormattableNonQuery
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteFormattableNonQuery_
commentId: Overload:DirectSQL.Database`5.ExecuteFormattableNonQuery
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteFormattableNonQuery
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteFormattableNonQuery
nameWithType: Database<C, T, CMD, R, P>.ExecuteFormattableNonQuery
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteFormattableNonQuery
- uid: DirectSQL.Database`5.ExecuteFormattableScalar(System.FormattableString,`0)
name: ExecuteFormattableScalar(FormattableString, C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteFormattableScalar_System_FormattableString__0_
commentId: M:DirectSQL.Database`5.ExecuteFormattableScalar(System.FormattableString,`0)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteFormattableScalar(System.FormattableString, C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteFormattableScalar(System.FormattableString, C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteFormattableScalar(FormattableString, C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteFormattableScalar(FormattableString, C)
- uid: DirectSQL.Database`5.ExecuteFormattableScalar(System.FormattableString,`0,`1)
name: ExecuteFormattableScalar(FormattableString, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteFormattableScalar_System_FormattableString__0__1_
commentId: M:DirectSQL.Database`5.ExecuteFormattableScalar(System.FormattableString,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteFormattableScalar(System.FormattableString, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteFormattableScalar(System.FormattableString, C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteFormattableScalar(FormattableString, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteFormattableScalar(FormattableString, C, T)
- uid: DirectSQL.Database`5.ExecuteFormattableScalar*
name: ExecuteFormattableScalar
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteFormattableScalar_
commentId: Overload:DirectSQL.Database`5.ExecuteFormattableScalar
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteFormattableScalar
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteFormattableScalar
nameWithType: Database<C, T, CMD, R, P>.ExecuteFormattableScalar
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteFormattableScalar
- uid: DirectSQL.Database`5.ExecuteNonQuery(System.String,`0)
name: ExecuteNonQuery(String, C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteNonQuery_System_String__0_
commentId: M:DirectSQL.Database`5.ExecuteNonQuery(System.String,`0)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteNonQuery(System.String, C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteNonQuery(System.String, C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteNonQuery(String, C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteNonQuery(String, C)
- uid: DirectSQL.Database`5.ExecuteNonQuery(System.String,`0,`1)
name: ExecuteNonQuery(String, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteNonQuery_System_String__0__1_
commentId: M:DirectSQL.Database`5.ExecuteNonQuery(System.String,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteNonQuery(System.String, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteNonQuery(System.String, C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteNonQuery(String, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteNonQuery(String, C, T)
- uid: DirectSQL.Database`5.ExecuteNonQuery(System.String,System.ValueTuple{System.String,System.Object}[],`0)
name: ExecuteNonQuery(String, (String name, Object value)[], C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteNonQuery_System_String_System_ValueTuple_System_String_System_Object_____0_
commentId: M:DirectSQL.Database`5.ExecuteNonQuery(System.String,System.ValueTuple{System.String,System.Object}[],`0)
name.vb: ExecuteNonQuery(String, (name As String, value As Object)(), C)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteNonQuery(System.String, System.ValueTuple<System.String, System.Object>[], C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteNonQuery(System.String, System.ValueTuple(Of System.String, System.Object)(), C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteNonQuery(String, (String name, Object value)[], C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteNonQuery(String, (name As String, value As Object)(), C)
- uid: DirectSQL.Database`5.ExecuteNonQuery(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name: ExecuteNonQuery(String, (String name, Object value)[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteNonQuery_System_String_System_ValueTuple_System_String_System_Object_____0__1_
commentId: M:DirectSQL.Database`5.ExecuteNonQuery(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name.vb: ExecuteNonQuery(String, (name As String, value As Object)(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteNonQuery(System.String, System.ValueTuple<System.String, System.Object>[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteNonQuery(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteNonQuery(String, (String name, Object value)[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteNonQuery(String, (name As String, value As Object)(), C, T)
- uid: DirectSQL.Database`5.ExecuteNonQuery*
name: ExecuteNonQuery
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteNonQuery_
commentId: Overload:DirectSQL.Database`5.ExecuteNonQuery
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteNonQuery
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteNonQuery
nameWithType: Database<C, T, CMD, R, P>.ExecuteNonQuery
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteNonQuery
- uid: DirectSQL.Database`5.ExecuteScalar(System.String,`0)
name: ExecuteScalar(String, C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_System_String__0_
commentId: M:DirectSQL.Database`5.ExecuteScalar(System.String,`0)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar(System.String, C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar(System.String, C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar(String, C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar(String, C)
- uid: DirectSQL.Database`5.ExecuteScalar(System.String,`0,`1)
name: ExecuteScalar(String, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_System_String__0__1_
commentId: M:DirectSQL.Database`5.ExecuteScalar(System.String,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar(System.String, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar(System.String, C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar(String, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar(String, C, T)
- uid: DirectSQL.Database`5.ExecuteScalar(System.String,`4[],`0)
name: ExecuteScalar(String, P[], C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_System_String__4____0_
commentId: M:DirectSQL.Database`5.ExecuteScalar(System.String,`4[],`0)
name.vb: ExecuteScalar(String, P(), C)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar(System.String, P[], C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar(System.String, P(), C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar(String, P[], C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar(String, P(), C)
- uid: DirectSQL.Database`5.ExecuteScalar(System.String,`4[],`0,`1)
name: ExecuteScalar(String, P[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_System_String__4____0__1_
commentId: M:DirectSQL.Database`5.ExecuteScalar(System.String,`4[],`0,`1)
name.vb: ExecuteScalar(String, P(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar(System.String, P[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar(System.String, P(), C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar(String, P[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar(String, P(), C, T)
- uid: DirectSQL.Database`5.ExecuteScalar(System.String,System.ValueTuple{System.String,System.Object}[],`0)
name: ExecuteScalar(String, (String name, Object value)[], C)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_System_String_System_ValueTuple_System_String_System_Object_____0_
commentId: M:DirectSQL.Database`5.ExecuteScalar(System.String,System.ValueTuple{System.String,System.Object}[],`0)
name.vb: ExecuteScalar(String, (name As String, value As Object)(), C)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar(System.String, System.ValueTuple<System.String, System.Object>[], C)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar(System.String, System.ValueTuple(Of System.String, System.Object)(), C)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar(String, (String name, Object value)[], C)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar(String, (name As String, value As Object)(), C)
- uid: DirectSQL.Database`5.ExecuteScalar(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name: ExecuteScalar(String, (String name, Object value)[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_System_String_System_ValueTuple_System_String_System_Object_____0__1_
commentId: M:DirectSQL.Database`5.ExecuteScalar(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name.vb: ExecuteScalar(String, (name As String, value As Object)(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar(System.String, System.ValueTuple<System.String, System.Object>[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar(String, (String name, Object value)[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar(String, (name As String, value As Object)(), C, T)
- uid: DirectSQL.Database`5.ExecuteScalar*
name: ExecuteScalar
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalar_
commentId: Overload:DirectSQL.Database`5.ExecuteScalar
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalar
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalar
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalar
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalar
- uid: DirectSQL.Database`5.ExecuteScalarCore(System.String,`4[],`0,IDbTransaction)
name: ExecuteScalarCore(String, P[], C, IDbTransaction)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalarCore_System_String__4____0_IDbTransaction_
commentId: M:DirectSQL.Database`5.ExecuteScalarCore(System.String,`4[],`0,IDbTransaction)
name.vb: ExecuteScalarCore(String, P(), C, IDbTransaction)
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalarCore(System.String, P[], C, IDbTransaction)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalarCore(System.String, P(), C, IDbTransaction)
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalarCore(String, P[], C, IDbTransaction)
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalarCore(String, P(), C, IDbTransaction)
- uid: DirectSQL.Database`5.ExecuteScalarCore*
name: ExecuteScalarCore
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ExecuteScalarCore_
commentId: Overload:DirectSQL.Database`5.ExecuteScalarCore
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ExecuteScalarCore
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ExecuteScalarCore
nameWithType: Database<C, T, CMD, R, P>.ExecuteScalarCore
nameWithType.vb: Database(Of C, T, CMD, R, P).ExecuteScalarCore
- uid: DirectSQL.Database`5.LoadFormattableSqlResult(System.FormattableString,`0,`1)
name: LoadFormattableSqlResult(FormattableString, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadFormattableSqlResult_System_FormattableString__0__1_
commentId: M:DirectSQL.Database`5.LoadFormattableSqlResult(System.FormattableString,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadFormattableSqlResult(System.FormattableString, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadFormattableSqlResult(System.FormattableString, C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadFormattableSqlResult(FormattableString, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadFormattableSqlResult(FormattableString, C, T)
- uid: DirectSQL.Database`5.LoadFormattableSqlResult*
name: LoadFormattableSqlResult
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadFormattableSqlResult_
commentId: Overload:DirectSQL.Database`5.LoadFormattableSqlResult
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadFormattableSqlResult
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadFormattableSqlResult
nameWithType: Database<C, T, CMD, R, P>.LoadFormattableSqlResult
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadFormattableSqlResult
- uid: DirectSQL.Database`5.LoadFormattableSqlResultAsync(System.FormattableString,`0,`1)
name: LoadFormattableSqlResultAsync(FormattableString, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadFormattableSqlResultAsync_System_FormattableString__0__1_
commentId: M:DirectSQL.Database`5.LoadFormattableSqlResultAsync(System.FormattableString,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadFormattableSqlResultAsync(System.FormattableString, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadFormattableSqlResultAsync(System.FormattableString, C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadFormattableSqlResultAsync(FormattableString, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadFormattableSqlResultAsync(FormattableString, C, T)
- uid: DirectSQL.Database`5.LoadFormattableSqlResultAsync*
name: LoadFormattableSqlResultAsync
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadFormattableSqlResultAsync_
commentId: Overload:DirectSQL.Database`5.LoadFormattableSqlResultAsync
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadFormattableSqlResultAsync
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadFormattableSqlResultAsync
nameWithType: Database<C, T, CMD, R, P>.LoadFormattableSqlResultAsync
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadFormattableSqlResultAsync
- uid: DirectSQL.Database`5.LoadSqlResult(System.String,`0,`1)
name: LoadSqlResult(String, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResult_System_String__0__1_
commentId: M:DirectSQL.Database`5.LoadSqlResult(System.String,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResult(System.String, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResult(System.String, C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResult(String, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResult(String, C, T)
- uid: DirectSQL.Database`5.LoadSqlResult(System.String,`4[],`0,`1)
name: LoadSqlResult(String, P[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResult_System_String__4____0__1_
commentId: M:DirectSQL.Database`5.LoadSqlResult(System.String,`4[],`0,`1)
name.vb: LoadSqlResult(String, P(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResult(System.String, P[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResult(System.String, P(), C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResult(String, P[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResult(String, P(), C, T)
- uid: DirectSQL.Database`5.LoadSqlResult(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name: LoadSqlResult(String, (String, Object)[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResult_System_String_System_ValueTuple_System_String_System_Object_____0__1_
commentId: M:DirectSQL.Database`5.LoadSqlResult(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name.vb: LoadSqlResult(String, (String, Object)(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResult(System.String, System.ValueTuple<System.String, System.Object>[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResult(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResult(String, (String, Object)[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResult(String, (String, Object)(), C, T)
- uid: DirectSQL.Database`5.LoadSqlResult*
name: LoadSqlResult
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResult_
commentId: Overload:DirectSQL.Database`5.LoadSqlResult
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResult
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResult
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResult
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResult
- uid: DirectSQL.Database`5.LoadSqlResultAsync(System.String,`0,`1)
name: LoadSqlResultAsync(String, C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResultAsync_System_String__0__1_
commentId: M:DirectSQL.Database`5.LoadSqlResultAsync(System.String,`0,`1)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResultAsync(System.String, C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResultAsync(System.String, C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResultAsync(String, C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResultAsync(String, C, T)
- uid: DirectSQL.Database`5.LoadSqlResultAsync(System.String,`4[],`0,`1)
name: LoadSqlResultAsync(String, P[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResultAsync_System_String__4____0__1_
commentId: M:DirectSQL.Database`5.LoadSqlResultAsync(System.String,`4[],`0,`1)
name.vb: LoadSqlResultAsync(String, P(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResultAsync(System.String, P[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResultAsync(System.String, P(), C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResultAsync(String, P[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResultAsync(String, P(), C, T)
- uid: DirectSQL.Database`5.LoadSqlResultAsync(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name: LoadSqlResultAsync(String, (String, Object)[], C, T)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResultAsync_System_String_System_ValueTuple_System_String_System_Object_____0__1_
commentId: M:DirectSQL.Database`5.LoadSqlResultAsync(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1)
name.vb: LoadSqlResultAsync(String, (String, Object)(), C, T)
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResultAsync(System.String, System.ValueTuple<System.String, System.Object>[], C, T)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResultAsync(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T)
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResultAsync(String, (String, Object)[], C, T)
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResultAsync(String, (String, Object)(), C, T)
- uid: DirectSQL.Database`5.LoadSqlResultAsync*
name: LoadSqlResultAsync
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_LoadSqlResultAsync_
commentId: Overload:DirectSQL.Database`5.LoadSqlResultAsync
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.LoadSqlResultAsync
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).LoadSqlResultAsync
nameWithType: Database<C, T, CMD, R, P>.LoadSqlResultAsync
nameWithType.vb: Database(Of C, T, CMD, R, P).LoadSqlResultAsync
- uid: DirectSQL.Database`5.Process(DirectSQL.ConnectExecution{`0})
name: Process(ConnectExecution<C>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Process_DirectSQL_ConnectExecution__0__
commentId: M:DirectSQL.Database`5.Process(DirectSQL.ConnectExecution{`0})
name.vb: Process(ConnectExecution(Of C))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Process(DirectSQL.ConnectExecution<C>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Process(DirectSQL.ConnectExecution(Of C))
nameWithType: Database<C, T, CMD, R, P>.Process(ConnectExecution<C>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Process(ConnectExecution(Of C))
- uid: DirectSQL.Database`5.Process(DirectSQL.SqlExecution{`0,`1})
name: Process(SqlExecution<C, T>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Process_DirectSQL_SqlExecution__0__1__
commentId: M:DirectSQL.Database`5.Process(DirectSQL.SqlExecution{`0,`1})
name.vb: Process(SqlExecution(Of C, T))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Process(DirectSQL.SqlExecution<C, T>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Process(DirectSQL.SqlExecution(Of C, T))
nameWithType: Database<C, T, CMD, R, P>.Process(SqlExecution<C, T>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Process(SqlExecution(Of C, T))
- uid: DirectSQL.Database`5.Process*
name: Process
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Process_
commentId: Overload:DirectSQL.Database`5.Process
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.Process
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Process
nameWithType: Database<C, T, CMD, R, P>.Process
nameWithType.vb: Database(Of C, T, CMD, R, P).Process
- uid: DirectSQL.Database`5.ProcessAsync(DirectSQL.AsyncConnectExecution{`0})
name: ProcessAsync(AsyncConnectExecution<C>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ProcessAsync_DirectSQL_AsyncConnectExecution__0__
commentId: M:DirectSQL.Database`5.ProcessAsync(DirectSQL.AsyncConnectExecution{`0})
name.vb: ProcessAsync(AsyncConnectExecution(Of C))
fullName: DirectSQL.Database<C, T, CMD, R, P>.ProcessAsync(DirectSQL.AsyncConnectExecution<C>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ProcessAsync(DirectSQL.AsyncConnectExecution(Of C))
nameWithType: Database<C, T, CMD, R, P>.ProcessAsync(AsyncConnectExecution<C>)
nameWithType.vb: Database(Of C, T, CMD, R, P).ProcessAsync(AsyncConnectExecution(Of C))
- uid: DirectSQL.Database`5.ProcessAsync(DirectSQL.AsyncSqlExecution{`0,`1})
name: ProcessAsync(AsyncSqlExecution<C, T>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ProcessAsync_DirectSQL_AsyncSqlExecution__0__1__
commentId: M:DirectSQL.Database`5.ProcessAsync(DirectSQL.AsyncSqlExecution{`0,`1})
name.vb: ProcessAsync(AsyncSqlExecution(Of C, T))
fullName: DirectSQL.Database<C, T, CMD, R, P>.ProcessAsync(DirectSQL.AsyncSqlExecution<C, T>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ProcessAsync(DirectSQL.AsyncSqlExecution(Of C, T))
nameWithType: Database<C, T, CMD, R, P>.ProcessAsync(AsyncSqlExecution<C, T>)
nameWithType.vb: Database(Of C, T, CMD, R, P).ProcessAsync(AsyncSqlExecution(Of C, T))
- uid: DirectSQL.Database`5.ProcessAsync*
name: ProcessAsync
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_ProcessAsync_
commentId: Overload:DirectSQL.Database`5.ProcessAsync
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.ProcessAsync
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).ProcessAsync
nameWithType: Database<C, T, CMD, R, P>.ProcessAsync
nameWithType.vb: Database(Of C, T, CMD, R, P).ProcessAsync
- uid: DirectSQL.Database`5.Query(System.String,`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: Query(String, C, T, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_System_String__0__1_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.Query(System.String,`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: Query(String, C, T, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query(System.String, C, T, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query(System.String, C, T, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.Query(String, C, T, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Query(String, C, T, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.Query(System.String,`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: Query(String, C, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_System_String__0_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.Query(System.String,`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: Query(String, C, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query(System.String, C, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query(System.String, C, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.Query(String, C, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Query(String, C, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.Query(System.String,`4[],`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: Query(String, P[], C, T, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_System_String__4____0__1_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.Query(System.String,`4[],`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: Query(String, P(), C, T, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query(System.String, P[], C, T, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query(System.String, P(), C, T, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.Query(String, P[], C, T, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Query(String, P(), C, T, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.Query(System.String,`4[],`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: Query(String, P[], C, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_System_String__4____0_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.Query(System.String,`4[],`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: Query(String, P(), C, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query(System.String, P[], C, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query(System.String, P(), C, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.Query(String, P[], C, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Query(String, P(), C, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.Query(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: Query(String, (String name, Object value)[], C, T, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_System_String_System_ValueTuple_System_String_System_Object_____0__1_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.Query(System.String,System.ValueTuple{System.String,System.Object}[],`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: Query(String, (name As String, value As Object)(), C, T, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query(System.String, System.ValueTuple<System.String, System.Object>[], C, T, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.Query(String, (String name, Object value)[], C, T, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Query(String, (name As String, value As Object)(), C, T, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.Query(System.String,System.ValueTuple{System.String,System.Object}[],`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: Query(String, (String name, Object value)[], C, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_System_String_System_ValueTuple_System_String_System_Object_____0_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.Query(System.String,System.ValueTuple{System.String,System.Object}[],`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: Query(String, (name As String, value As Object)(), C, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query(System.String, System.ValueTuple<System.String, System.Object>[], C, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query(System.String, System.ValueTuple(Of System.String, System.Object)(), C, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.Query(String, (String name, Object value)[], C, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Query(String, (name As String, value As Object)(), C, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.Query*
name: Query
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Query_
commentId: Overload:DirectSQL.Database`5.Query
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.Query
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Query
nameWithType: Database<C, T, CMD, R, P>.Query
nameWithType.vb: Database(Of C, T, CMD, R, P).Query
- uid: DirectSQL.Database`5.QueryFormattable(System.FormattableString,`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: QueryFormattable(FormattableString, C, T, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_QueryFormattable_System_FormattableString__0__1_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.QueryFormattable(System.FormattableString,`0,`1,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: QueryFormattable(FormattableString, C, T, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.QueryFormattable(System.FormattableString, C, T, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).QueryFormattable(System.FormattableString, C, T, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.QueryFormattable(FormattableString, C, T, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).QueryFormattable(FormattableString, C, T, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.QueryFormattable(System.FormattableString,`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name: QueryFormattable(FormattableString, C, ReadSqlResult<R, CMD, T, C, P>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_QueryFormattable_System_FormattableString__0_DirectSQL_ReadSqlResult__3__2__1__0__4__
commentId: M:DirectSQL.Database`5.QueryFormattable(System.FormattableString,`0,DirectSQL.ReadSqlResult{`3,`2,`1,`0,`4})
name.vb: QueryFormattable(FormattableString, C, ReadSqlResult(Of R, CMD, T, C, P))
fullName: DirectSQL.Database<C, T, CMD, R, P>.QueryFormattable(System.FormattableString, C, DirectSQL.ReadSqlResult<R, CMD, T, C, P>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).QueryFormattable(System.FormattableString, C, DirectSQL.ReadSqlResult(Of R, CMD, T, C, P))
nameWithType: Database<C, T, CMD, R, P>.QueryFormattable(FormattableString, C, ReadSqlResult<R, CMD, T, C, P>)
nameWithType.vb: Database(Of C, T, CMD, R, P).QueryFormattable(FormattableString, C, ReadSqlResult(Of R, CMD, T, C, P))
- uid: DirectSQL.Database`5.QueryFormattable*
name: QueryFormattable
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_QueryFormattable_
commentId: Overload:DirectSQL.Database`5.QueryFormattable
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.QueryFormattable
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).QueryFormattable
nameWithType: Database<C, T, CMD, R, P>.QueryFormattable
nameWithType.vb: Database(Of C, T, CMD, R, P).QueryFormattable
- uid: DirectSQL.Database`5.SqlResult
name: Database<C, T, CMD, R, P>.SqlResult
href: doc/api/DirectSQL.Database-5.SqlResult.html
commentId: T:DirectSQL.Database`5.SqlResult
name.vb: Database(Of C, T, CMD, R, P).SqlResult
fullName: DirectSQL.Database<C, T, CMD, R, P>.SqlResult
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).SqlResult
nameWithType: Database<C, T, CMD, R, P>.SqlResult
nameWithType.vb: Database(Of C, T, CMD, R, P).SqlResult
- uid: DirectSQL.Database`5.Transaction(`0,DirectSQL.SqlExecution{`0,`1})
name: Transaction(C, SqlExecution<C, T>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Transaction__0_DirectSQL_SqlExecution__0__1__
commentId: M:DirectSQL.Database`5.Transaction(`0,DirectSQL.SqlExecution{`0,`1})
name.vb: Transaction(C, SqlExecution(Of C, T))
fullName: DirectSQL.Database<C, T, CMD, R, P>.Transaction(C, DirectSQL.SqlExecution<C, T>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Transaction(C, DirectSQL.SqlExecution(Of C, T))
nameWithType: Database<C, T, CMD, R, P>.Transaction(C, SqlExecution<C, T>)
nameWithType.vb: Database(Of C, T, CMD, R, P).Transaction(C, SqlExecution(Of C, T))
- uid: DirectSQL.Database`5.Transaction*
name: Transaction
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_Transaction_
commentId: Overload:DirectSQL.Database`5.Transaction
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.Transaction
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).Transaction
nameWithType: Database<C, T, CMD, R, P>.Transaction
nameWithType.vb: Database(Of C, T, CMD, R, P).Transaction
- uid: DirectSQL.Database`5.TransactionAsync(`0,DirectSQL.AsyncSqlExecution{`0,`1})
name: TransactionAsync(C, AsyncSqlExecution<C, T>)
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_TransactionAsync__0_DirectSQL_AsyncSqlExecution__0__1__
commentId: M:DirectSQL.Database`5.TransactionAsync(`0,DirectSQL.AsyncSqlExecution{`0,`1})
name.vb: TransactionAsync(C, AsyncSqlExecution(Of C, T))
fullName: DirectSQL.Database<C, T, CMD, R, P>.TransactionAsync(C, DirectSQL.AsyncSqlExecution<C, T>)
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).TransactionAsync(C, DirectSQL.AsyncSqlExecution(Of C, T))
nameWithType: Database<C, T, CMD, R, P>.TransactionAsync(C, AsyncSqlExecution<C, T>)
nameWithType.vb: Database(Of C, T, CMD, R, P).TransactionAsync(C, AsyncSqlExecution(Of C, T))
- uid: DirectSQL.Database`5.TransactionAsync*
name: TransactionAsync
href: doc/api/DirectSQL.Database-5.html#DirectSQL_Database_5_TransactionAsync_
commentId: Overload:DirectSQL.Database`5.TransactionAsync
isSpec: "True"
fullName: DirectSQL.Database<C, T, CMD, R, P>.TransactionAsync
fullName.vb: DirectSQL.Database(Of C, T, CMD, R, P).TransactionAsync
nameWithType: Database<C, T, CMD, R, P>.TransactionAsync
nameWithType.vb: Database(Of C, T, CMD, R, P).TransactionAsync
- uid: DirectSQL.DatabaseException
name: DatabaseException
href: doc/api/DirectSQL.DatabaseException.html
commentId: T:DirectSQL.DatabaseException
fullName: DirectSQL.DatabaseException
nameWithType: DatabaseException
- uid: DirectSQL.DB2
name: DirectSQL.DB2
href: doc/api/DirectSQL.DB2.html
commentId: N:DirectSQL.DB2
fullName: DirectSQL.DB2
nameWithType: DirectSQL.DB2
- uid: DirectSQL.DB2.DB2Database
name: DB2Database
href: doc/api/DirectSQL.DB2.DB2Database.html
commentId: T:DirectSQL.DB2.DB2Database
fullName: DirectSQL.DB2.DB2Database
nameWithType: DB2Database
- uid: DirectSQL.DB2.DB2Database.#ctor(System.String)
name: DB2Database(String)
href: doc/api/DirectSQL.DB2.DB2Database.html#DirectSQL_DB2_DB2Database__ctor_System_String_
commentId: M:DirectSQL.DB2.DB2Database.#ctor(System.String)
fullName: DirectSQL.DB2.DB2Database.DB2Database(System.String)
nameWithType: DB2Database.DB2Database(String)
- uid: DirectSQL.DB2.DB2Database.#ctor*
name: DB2Database
href: doc/api/DirectSQL.DB2.DB2Database.html#DirectSQL_DB2_DB2Database__ctor_
commentId: Overload:DirectSQL.DB2.DB2Database.#ctor
isSpec: "True"
fullName: DirectSQL.DB2.DB2Database.DB2Database
nameWithType: DB2Database.DB2Database
- uid: DirectSQL.DB2.DB2Database.CreateConnection
name: CreateConnection()
href: doc/api/DirectSQL.DB2.DB2Database.html#DirectSQL_DB2_DB2Database_CreateConnection
commentId: M:DirectSQL.DB2.DB2Database.CreateConnection
fullName: DirectSQL.DB2.DB2Database.CreateConnection()
nameWithType: DB2Database.CreateConnection()
- uid: DirectSQL.DB2.DB2Database.CreateConnection*
name: CreateConnection
href: doc/api/DirectSQL.DB2.DB2Database.html#DirectSQL_DB2_DB2Database_CreateConnection_
commentId: Overload:DirectSQL.DB2.DB2Database.CreateConnection
isSpec: "True"
fullName: DirectSQL.DB2.DB2Database.CreateConnection
nameWithType: DB2Database.CreateConnection
- uid: DirectSQL.EnumerableObject`1
name: EnumerableObject<T>
href: doc/api/DirectSQL.EnumerableObject-1.html
commentId: T:DirectSQL.EnumerableObject`1
name.vb: EnumerableObject(Of T)
fullName: DirectSQL.EnumerableObject<T>
fullName.vb: DirectSQL.EnumerableObject(Of T)
nameWithType: EnumerableObject<T>
nameWithType.vb: EnumerableObject(Of T)
- uid: DirectSQL.EnumerableObject`1.GetEnumerator
name: GetEnumerator()
href: doc/api/DirectSQL.EnumerableObject-1.html#DirectSQL_EnumerableObject_1_GetEnumerator
commentId: M:DirectSQL.EnumerableObject`1.GetEnumerator
fullName: DirectSQL.EnumerableObject<T>.GetEnumerator()
fullName.vb: DirectSQL.EnumerableObject(Of T).GetEnumerator()
nameWithType: EnumerableObject<T>.GetEnumerator()
nameWithType.vb: EnumerableObject(Of T).GetEnumerator()
- uid: DirectSQL.EnumerableObject`1.GetEnumerator*
name: GetEnumerator
href: doc/api/DirectSQL.EnumerableObject-1.html#DirectSQL_EnumerableObject_1_GetEnumerator_
commentId: Overload:DirectSQL.EnumerableObject`1.GetEnumerator
isSpec: "True"
fullName: DirectSQL.EnumerableObject<T>.GetEnumerator
fullName.vb: DirectSQL.EnumerableObject(Of T).GetEnumerator
nameWithType: EnumerableObject<T>.GetEnumerator
nameWithType.vb: EnumerableObject(Of T).GetEnumerator
- uid: DirectSQL.EnumerableObject`1.System#Collections#IEnumerable#GetEnumerator
name: IEnumerable.GetEnumerator()
href: doc/api/DirectSQL.EnumerableObject-1.html#DirectSQL_EnumerableObject_1_System_Collections_IEnumerable_GetEnumerator
commentId: M:DirectSQL.EnumerableObject`1.System#Collections#IEnumerable#GetEnumerator
name.vb: System.Collections.IEnumerable.GetEnumerator()
fullName: DirectSQL.EnumerableObject<T>.System.Collections.IEnumerable.GetEnumerator()
fullName.vb: DirectSQL.EnumerableObject(Of T).System.Collections.IEnumerable.GetEnumerator()
nameWithType: EnumerableObject<T>.IEnumerable.GetEnumerator()
nameWithType.vb: EnumerableObject(Of T).System.Collections.IEnumerable.GetEnumerator()
- uid: DirectSQL.EnumerableObject`1.System#Collections#IEnumerable#GetEnumerator*
name: IEnumerable.GetEnumerator
href: doc/api/DirectSQL.EnumerableObject-1.html#DirectSQL_EnumerableObject_1_System_Collections_IEnumerable_GetEnumerator_
commentId: Overload:DirectSQL.EnumerableObject`1.System#Collections#IEnumerable#GetEnumerator
isSpec: "True"
name.vb: System.Collections.IEnumerable.GetEnumerator
fullName: DirectSQL.EnumerableObject<T>.System.Collections.IEnumerable.GetEnumerator
fullName.vb: DirectSQL.EnumerableObject(Of T).System.Collections.IEnumerable.GetEnumerator
nameWithType: EnumerableObject<T>.IEnumerable.GetEnumerator
nameWithType.vb: EnumerableObject(Of T).System.Collections.IEnumerable.GetEnumerator
- uid: DirectSQL.MySql
name: DirectSQL.MySql
href: doc/api/DirectSQL.MySql.html
commentId: N:DirectSQL.MySql
fullName: DirectSQL.MySql
nameWithType: DirectSQL.MySql
- uid: DirectSQL.MySql.MySqlDatabase
name: MySqlDatabase
href: doc/api/DirectSQL.MySql.MySqlDatabase.html
commentId: T:DirectSQL.MySql.MySqlDatabase
fullName: DirectSQL.MySql.MySqlDatabase
nameWithType: MySqlDatabase
- uid: DirectSQL.MySql.MySqlDatabase.#ctor(System.String)
name: MySqlDatabase(String)
href: doc/api/DirectSQL.MySql.MySqlDatabase.html#DirectSQL_MySql_MySqlDatabase__ctor_System_String_
commentId: M:DirectSQL.MySql.MySqlDatabase.#ctor(System.String)
fullName: DirectSQL.MySql.MySqlDatabase.MySqlDatabase(System.String)
nameWithType: MySqlDatabase.MySqlDatabase(String)
- uid: DirectSQL.MySql.MySqlDatabase.#ctor*
name: MySqlDatabase
href: doc/api/DirectSQL.MySql.MySqlDatabase.html#DirectSQL_MySql_MySqlDatabase__ctor_
commentId: Overload:DirectSQL.MySql.MySqlDatabase.#ctor
isSpec: "True"
fullName: DirectSQL.MySql.MySqlDatabase.MySqlDatabase
nameWithType: MySqlDatabase.MySqlDatabase
- uid: DirectSQL.MySql.MySqlDatabase.CreateConnection
name: CreateConnection()
href: doc/api/DirectSQL.MySql.MySqlDatabase.html#DirectSQL_MySql_MySqlDatabase_CreateConnection
commentId: M:DirectSQL.MySql.MySqlDatabase.CreateConnection
fullName: DirectSQL.MySql.MySqlDatabase.CreateConnection()
nameWithType: MySqlDatabase.CreateConnection()
- uid: DirectSQL.MySql.MySqlDatabase.CreateConnection*
name: CreateConnection
href: doc/api/DirectSQL.MySql.MySqlDatabase.html#DirectSQL_MySql_MySqlDatabase_CreateConnection_
commentId: Overload:DirectSQL.MySql.MySqlDatabase.CreateConnection
isSpec: "True"
fullName: DirectSQL.MySql.MySqlDatabase.CreateConnection
nameWithType: MySqlDatabase.CreateConnection
- uid: DirectSQL.Npgsql
name: DirectSQL.Npgsql
href: doc/api/DirectSQL.Npgsql.html
commentId: N:DirectSQL.Npgsql
fullName: DirectSQL.Npgsql
nameWithType: DirectSQL.Npgsql
- uid: DirectSQL.Npgsql.NpgsqlDatabase
name: NpgsqlDatabase
href: doc/api/DirectSQL.Npgsql.NpgsqlDatabase.html
commentId: T:DirectSQL.Npgsql.NpgsqlDatabase
fullName: DirectSQL.Npgsql.NpgsqlDatabase
nameWithType: NpgsqlDatabase
- uid: DirectSQL.Npgsql.NpgsqlDatabase.#ctor(System.String)
name: NpgsqlDatabase(String)
href: doc/api/DirectSQL.Npgsql.NpgsqlDatabase.html#DirectSQL_Npgsql_NpgsqlDatabase__ctor_System_String_
commentId: M:DirectSQL.Npgsql.NpgsqlDatabase.#ctor(System.String)
fullName: DirectSQL.Npgsql.NpgsqlDatabase.NpgsqlDatabase(System.String)
nameWithType: NpgsqlDatabase.NpgsqlDatabase(String)
- uid: DirectSQL.Npgsql.NpgsqlDatabase.#ctor*
name: NpgsqlDatabase
href: doc/api/DirectSQL.Npgsql.NpgsqlDatabase.html#DirectSQL_Npgsql_NpgsqlDatabase__ctor_
commentId: Overload:DirectSQL.Npgsql.NpgsqlDatabase.#ctor
isSpec: "True"
fullName: DirectSQL.Npgsql.NpgsqlDatabase.NpgsqlDatabase
nameWithType: NpgsqlDatabase.NpgsqlDatabase
- uid: DirectSQL.Npgsql.NpgsqlDatabase.CreateConnection
name: CreateConnection()
href: doc/api/DirectSQL.Npgsql.NpgsqlDatabase.html#DirectSQL_Npgsql_NpgsqlDatabase_CreateConnection
commentId: M:DirectSQL.Npgsql.NpgsqlDatabase.CreateConnection
fullName: DirectSQL.Npgsql.NpgsqlDatabase.CreateConnection()
nameWithType: NpgsqlDatabase.CreateConnection()
- uid: DirectSQL.Npgsql.NpgsqlDatabase.CreateConnection*
name: CreateConnection
href: doc/api/DirectSQL.Npgsql.NpgsqlDatabase.html#DirectSQL_Npgsql_NpgsqlDatabase_CreateConnection_
commentId: Overload:DirectSQL.Npgsql.NpgsqlDatabase.CreateConnection
isSpec: "True"
fullName: DirectSQL.Npgsql.NpgsqlDatabase.CreateConnection
nameWithType: NpgsqlDatabase.CreateConnection
- uid: DirectSQL.Odbc
name: DirectSQL.Odbc
href: doc/api/DirectSQL.Odbc.html
commentId: N:DirectSQL.Odbc
fullName: DirectSQL.Odbc
nameWithType: DirectSQL.Odbc
- uid: DirectSQL.Odbc.OdbcDatabase
name: OdbcDatabase
href: doc/api/DirectSQL.Odbc.OdbcDatabase.html
commentId: T:DirectSQL.Odbc.OdbcDatabase
fullName: DirectSQL.Odbc.OdbcDatabase
nameWithType: OdbcDatabase
- uid: DirectSQL.Odbc.OdbcDatabase.#ctor(System.String)
name: OdbcDatabase(String)
href: doc/api/DirectSQL.Odbc.OdbcDatabase.html#DirectSQL_Odbc_OdbcDatabase__ctor_System_String_
commentId: M:DirectSQL.Odbc.OdbcDatabase.#ctor(System.String)
fullName: DirectSQL.Odbc.OdbcDatabase.OdbcDatabase(System.String)
nameWithType: OdbcDatabase.OdbcDatabase(String)
- uid: DirectSQL.Odbc.OdbcDatabase.#ctor*
name: OdbcDatabase
href: doc/api/DirectSQL.Odbc.OdbcDatabase.html#DirectSQL_Odbc_OdbcDatabase__ctor_
commentId: Overload:DirectSQL.Odbc.OdbcDatabase.#ctor
isSpec: "True"
fullName: DirectSQL.Odbc.OdbcDatabase.OdbcDatabase
nameWithType: OdbcDatabase.OdbcDatabase
- uid: DirectSQL.Odbc.OdbcDatabase.CreateConnection
name: CreateConnection()
href: doc/api/DirectSQL.Odbc.OdbcDatabase.html#DirectSQL_Odbc_OdbcDatabase_CreateConnection
commentId: M:DirectSQL.Odbc.OdbcDatabase.CreateConnection
fullName: DirectSQL.Odbc.OdbcDatabase.CreateConnection()
nameWithType: OdbcDatabase.CreateConnection()
- uid: DirectSQL.Odbc.OdbcDatabase.CreateConnection*
name: CreateConnection
href: doc/api/DirectSQL.Odbc.OdbcDatabase.html#DirectSQL_Odbc_OdbcDatabase_CreateConnection_
commentId: Overload:DirectSQL.Odbc.OdbcDatabase.CreateConnection
isSpec: "True"
fullName: DirectSQL.Odbc.OdbcDatabase.CreateConnection
nameWithType: OdbcDatabase.CreateConnection
- uid: DirectSQL.ReadSqlResult`5
name: ReadSqlResult<R, CMD, T, C, P>
href: doc/api/DirectSQL.ReadSqlResult-5.html
commentId: T:DirectSQL.ReadSqlResult`5
name.vb: ReadSqlResult(Of R, CMD, T, C, P)
fullName: DirectSQL.ReadSqlResult<R, CMD, T, C, P>
fullName.vb: DirectSQL.ReadSqlResult(Of R, CMD, T, C, P)
nameWithType: ReadSqlResult<R, CMD, T, C, P>
nameWithType.vb: ReadSqlResult(Of R, CMD, T, C, P)
- uid: DirectSQL.SqlExecution`2
name: SqlExecution<C, T>
href: doc/api/DirectSQL.SqlExecution-2.html
commentId: T:DirectSQL.SqlExecution`2
name.vb: SqlExecution(Of C, T)
fullName: DirectSQL.SqlExecution<C, T>
fullName.vb: DirectSQL.SqlExecution(Of C, T)
nameWithType: SqlExecution<C, T>
nameWithType.vb: SqlExecution(Of C, T)
- uid: DirectSQL.SqlLite
name: DirectSQL.SqlLite
href: doc/api/DirectSQL.SqlLite.html
commentId: N:DirectSQL.SqlLite
fullName: DirectSQL.SqlLite
nameWithType: DirectSQL.SqlLite
- uid: DirectSQL.SqlLite.SqlLiteDatabase
name: SqlLiteDatabase
href: doc/api/DirectSQL.SqlLite.SqlLiteDatabase.html
commentId: T:DirectSQL.SqlLite.SqlLiteDatabase
fullName: DirectSQL.SqlLite.SqlLiteDatabase
nameWithType: SqlLiteDatabase
- uid: DirectSQL.SqlLite.SqlLiteDatabase.#ctor(System.String)
name: SqlLiteDatabase(String)
href: doc/api/DirectSQL.SqlLite.SqlLiteDatabase.html#DirectSQL_SqlLite_SqlLiteDatabase__ctor_System_String_
commentId: M:DirectSQL.SqlLite.SqlLiteDatabase.#ctor(System.String)
fullName: DirectSQL.SqlLite.SqlLiteDatabase.SqlLiteDatabase(System.String)
nameWithType: SqlLiteDatabase.SqlLiteDatabase(String)
- uid: DirectSQL.SqlLite.SqlLiteDatabase.#ctor*
name: SqlLiteDatabase
href: doc/api/DirectSQL.SqlLite.SqlLiteDatabase.html#DirectSQL_SqlLite_SqlLiteDatabase__ctor_
commentId: Overload:DirectSQL.SqlLite.SqlLiteDatabase.#ctor
isSpec: "True"
fullName: DirectSQL.SqlLite.SqlLiteDatabase.SqlLiteDatabase
nameWithType: SqlLiteDatabase.SqlLiteDatabase
- uid: DirectSQL.SqlLite.SqlLiteDatabase.CreateConnection
name: CreateConnection()
href: doc/api/DirectSQL.SqlLite.SqlLiteDatabase.html#DirectSQL_SqlLite_SqlLiteDatabase_CreateConnection
commentId: M:DirectSQL.SqlLite.SqlLiteDatabase.CreateConnection
fullName: DirectSQL.SqlLite.SqlLiteDatabase.CreateConnection()
nameWithType: SqlLiteDatabase.CreateConnection()
- uid: DirectSQL.SqlLite.SqlLiteDatabase.CreateConnection*
name: CreateConnection
href: doc/api/DirectSQL.SqlLite.SqlLiteDatabase.html#DirectSQL_SqlLite_SqlLiteDatabase_CreateConnection_
commentId: Overload:DirectSQL.SqlLite.SqlLiteDatabase.CreateConnection
isSpec: "True"
fullName: DirectSQL.SqlLite.SqlLiteDatabase.CreateConnection
nameWithType: SqlLiteDatabase.CreateConnection
- uid: DirectSQL.SqlResult`5
name: SqlResult<R, CMD, T, C, P>
href: doc/api/DirectSQL.SqlResult-5.html
commentId: T:DirectSQL.SqlResult`5
name.vb: SqlResult(Of R, CMD, T, C, P)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P)
nameWithType: SqlResult<R, CMD, T, C, P>
nameWithType.vb: SqlResult(Of R, CMD, T, C, P)
- uid: DirectSQL.SqlResult`5.AsEnumerable
name: AsEnumerable()
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_AsEnumerable
commentId: M:DirectSQL.SqlResult`5.AsEnumerable
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.AsEnumerable()
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).AsEnumerable()
nameWithType: SqlResult<R, CMD, T, C, P>.AsEnumerable()
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).AsEnumerable()
- uid: DirectSQL.SqlResult`5.AsEnumerable*
name: AsEnumerable
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_AsEnumerable_
commentId: Overload:DirectSQL.SqlResult`5.AsEnumerable
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.AsEnumerable
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).AsEnumerable
nameWithType: SqlResult<R, CMD, T, C, P>.AsEnumerable
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).AsEnumerable
- uid: DirectSQL.SqlResult`5.AsEnumerable``1(System.Func{System.Object,``0})
name: AsEnumerable<TP>(Func<Object, TP>)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_AsEnumerable__1_System_Func_System_Object___0__
commentId: M:DirectSQL.SqlResult`5.AsEnumerable``1(System.Func{System.Object,``0})
name.vb: AsEnumerable(Of TP)(Func(Of Object, TP))
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.AsEnumerable<TP>(System.Func<System.Object, TP>)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).AsEnumerable(Of TP)(System.Func(Of System.Object, TP))
nameWithType: SqlResult<R, CMD, T, C, P>.AsEnumerable<TP>(Func<Object, TP>)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).AsEnumerable(Of TP)(Func(Of Object, TP))
- uid: DirectSQL.SqlResult`5.Command
name: Command
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_Command
commentId: P:DirectSQL.SqlResult`5.Command
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.Command
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).Command
nameWithType: SqlResult<R, CMD, T, C, P>.Command
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).Command
- uid: DirectSQL.SqlResult`5.Command*
name: Command
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_Command_
commentId: Overload:DirectSQL.SqlResult`5.Command
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.Command
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).Command
nameWithType: SqlResult<R, CMD, T, C, P>.Command
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).Command
- uid: DirectSQL.SqlResult`5.Dispose
name: Dispose()
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_Dispose
commentId: M:DirectSQL.SqlResult`5.Dispose
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.Dispose()
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).Dispose()
nameWithType: SqlResult<R, CMD, T, C, P>.Dispose()
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).Dispose()
- uid: DirectSQL.SqlResult`5.Dispose*
name: Dispose
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_Dispose_
commentId: Overload:DirectSQL.SqlResult`5.Dispose
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.Dispose
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).Dispose
nameWithType: SqlResult<R, CMD, T, C, P>.Dispose
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).Dispose
- uid: DirectSQL.SqlResult`5.GetEnumerator
name: GetEnumerator()
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_GetEnumerator
commentId: M:DirectSQL.SqlResult`5.GetEnumerator
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.GetEnumerator()
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).GetEnumerator()
nameWithType: SqlResult<R, CMD, T, C, P>.GetEnumerator()
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).GetEnumerator()
- uid: DirectSQL.SqlResult`5.GetEnumerator*
name: GetEnumerator
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_GetEnumerator_
commentId: Overload:DirectSQL.SqlResult`5.GetEnumerator
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.GetEnumerator
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).GetEnumerator
nameWithType: SqlResult<R, CMD, T, C, P>.GetEnumerator
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).GetEnumerator
- uid: DirectSQL.SqlResult`5.LoadSqlResult(System.String,`3,`2)
name: LoadSqlResult(String, C, T)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResult_System_String__3__2_
commentId: M:DirectSQL.SqlResult`5.LoadSqlResult(System.String,`3,`2)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResult(System.String, C, T)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResult(System.String, C, T)
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResult(String, C, T)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResult(String, C, T)
- uid: DirectSQL.SqlResult`5.LoadSqlResult(System.String,`4[],`3,`2)
name: LoadSqlResult(String, P[], C, T)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResult_System_String__4____3__2_
commentId: M:DirectSQL.SqlResult`5.LoadSqlResult(System.String,`4[],`3,`2)
name.vb: LoadSqlResult(String, P(), C, T)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResult(System.String, P[], C, T)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResult(System.String, P(), C, T)
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResult(String, P[], C, T)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResult(String, P(), C, T)
- uid: DirectSQL.SqlResult`5.LoadSqlResult(System.String,System.ValueTuple{System.String,System.Object}[],`3,`2)
name: LoadSqlResult(String, (String name, Object value)[], C, T)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResult_System_String_System_ValueTuple_System_String_System_Object_____3__2_
commentId: M:DirectSQL.SqlResult`5.LoadSqlResult(System.String,System.ValueTuple{System.String,System.Object}[],`3,`2)
name.vb: LoadSqlResult(String, (name As String, value As Object)(), C, T)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResult(System.String, System.ValueTuple<System.String, System.Object>[], C, T)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResult(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T)
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResult(String, (String name, Object value)[], C, T)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResult(String, (name As String, value As Object)(), C, T)
- uid: DirectSQL.SqlResult`5.LoadSqlResult*
name: LoadSqlResult
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResult_
commentId: Overload:DirectSQL.SqlResult`5.LoadSqlResult
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResult
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResult
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResult
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResult
- uid: DirectSQL.SqlResult`5.LoadSqlResultAsync(System.String,`3,`2)
name: LoadSqlResultAsync(String, C, T)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResultAsync_System_String__3__2_
commentId: M:DirectSQL.SqlResult`5.LoadSqlResultAsync(System.String,`3,`2)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync(System.String, C, T)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync(System.String, C, T)
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync(String, C, T)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync(String, C, T)
- uid: DirectSQL.SqlResult`5.LoadSqlResultAsync(System.String,`4[],`3,`2)
name: LoadSqlResultAsync(String, P[], C, T)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResultAsync_System_String__4____3__2_
commentId: M:DirectSQL.SqlResult`5.LoadSqlResultAsync(System.String,`4[],`3,`2)
name.vb: LoadSqlResultAsync(String, P(), C, T)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync(System.String, P[], C, T)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync(System.String, P(), C, T)
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync(String, P[], C, T)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync(String, P(), C, T)
- uid: DirectSQL.SqlResult`5.LoadSqlResultAsync(System.String,System.ValueTuple{System.String,System.Object}[],`3,`2)
name: LoadSqlResultAsync(String, (String name, Object value)[], C, T)
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResultAsync_System_String_System_ValueTuple_System_String_System_Object_____3__2_
commentId: M:DirectSQL.SqlResult`5.LoadSqlResultAsync(System.String,System.ValueTuple{System.String,System.Object}[],`3,`2)
name.vb: LoadSqlResultAsync(String, (name As String, value As Object)(), C, T)
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync(System.String, System.ValueTuple<System.String, System.Object>[], C, T)
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync(System.String, System.ValueTuple(Of System.String, System.Object)(), C, T)
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync(String, (String name, Object value)[], C, T)
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync(String, (name As String, value As Object)(), C, T)
- uid: DirectSQL.SqlResult`5.LoadSqlResultAsync*
name: LoadSqlResultAsync
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_LoadSqlResultAsync_
commentId: Overload:DirectSQL.SqlResult`5.LoadSqlResultAsync
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync
nameWithType: SqlResult<R, CMD, T, C, P>.LoadSqlResultAsync
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).LoadSqlResultAsync
- uid: DirectSQL.SqlResult`5.Next
name: Next()
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_Next
commentId: M:DirectSQL.SqlResult`5.Next
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.Next()
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).Next()
nameWithType: SqlResult<R, CMD, T, C, P>.Next()
nameWithType.vb: SqlResult(Of R, CMD, T, C, P).Next()
- uid: DirectSQL.SqlResult`5.Next*
name: Next
href: doc/api/DirectSQL.SqlResult-5.html#DirectSQL_SqlResult_5_Next_
commentId: Overload:DirectSQL.SqlResult`5.Next
isSpec: "True"
fullName: DirectSQL.SqlResult<R, CMD, T, C, P>.Next
fullName.vb: DirectSQL.SqlResult(Of R, CMD, T, C, P).Next