This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinqToExcel.xml
825 lines (825 loc) · 45.1 KB
/
LinqToExcel.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>LinqToExcel</name>
</assembly>
<members>
<member name="T:LinqToExcel.Cell">
<summary>
Represents a cell and its value in an excel spreadsheet
</summary>
</member>
<member name="M:LinqToExcel.Cell.#ctor(System.Object)">
<param name="value">Cell's value</param>
</member>
<member name="M:LinqToExcel.Cell.Cast``1">
<summary>
Casts the cell's value to the generic argument type
</summary>
<typeparam name="T">Object type to convert to</typeparam>
</member>
<member name="M:LinqToExcel.Cell.ToString">
<summary>
Cell's value as a string
</summary>
</member>
<member name="M:LinqToExcel.Cell.op_Implicit(LinqToExcel.Cell)~System.String">
<summary>
Allow cell to be implicitly cast to a string
</summary>
</member>
<member name="P:LinqToExcel.Cell.Value">
<summary>
Cell's value
</summary>
</member>
<member name="M:LinqToExcel.RowNoHeader.#ctor(System.Collections.Generic.IEnumerable{LinqToExcel.Cell})">
<param name="cells">Cells contained within the row</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.AddMapping``1(System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String)">
<summary>
Add a column to property mapping
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="property">Class property to map to</param>
<param name="column">Worksheet column name to map from</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.AddMapping(System.String,System.String)">
<summary>
Add a column to property mapping
</summary>
<param name="propertyName">Class property to map to</param>
<param name="column">Worksheet column name to map from</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.AddMapping``1(System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String,System.Func{System.String,System.Object})">
<summary>
Add a column to property mapping with a transformation operation
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="property">Class property to map to</param>
<param name="column">Worksheet column name to map from</param>
<param name="transformation">Lambda expression that transforms a cell value in the spreadsheet to the desired property value</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.AddTransformation``1(System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.Func{System.String,System.Object})">
<summary>
Transforms a cell value in the spreadsheet to the desired property value
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="property">Class property value to transform</param>
<param name="transformation">Lambda expression that transforms a cell value in the spreadsheet to the desired property value</param>
<example>
AddTransformation{Person}(p => p.IsActive, x => x == "Y");
AddTransformation{Person}(p => p.IsYoung, x => DateTime.Parse(x) > new DateTime(2000, 1, 1));
</example>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.Worksheet``1">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.Worksheet``1(System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.Worksheet``1(System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.Worksheet">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.Worksheet(System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.Worksheet(System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRange``1(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRange``1(System.String,System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRange``1(System.String,System.String,System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRange(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRange(System.String,System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRange(System.String,System.String,System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetNoHeader">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetNoHeader(System.String)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetNoHeader(System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRangeNoHeader(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRangeNoHeader(System.String,System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.WorksheetRangeNoHeader(System.String,System.String,System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRange``1(System.String)">
<summary>
Enables Linq queries against a workbook-scope named range
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="namedRangeName">Name of the workbook-scope named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRange``1(System.String,System.String)">
<summary>
Enables Linq queries against a named range
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetName">Name of the worksheet</param>
<param name="namedRangeName">Name of the named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRange``1(System.Int32,System.String)">
<summary>
Enables Linq queries against a named range
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="namedRangeName">Name of the named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRange(System.String)">
<summary>
Enables Linq queries against a workbook-scope named range
</summary>
<param name="namedRangeName">Name of the workbook-scope named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRange(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetName">Name of the worksheet</param>
<param name="namedRangeName">Name of the named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRange(System.Int32,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="namedRangeName">Name of the named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRangeNoHeader(System.String)">
<summary>
Enables Linq queries against a workbook-scope named range that does not have a header row
</summary>
<param name="namedRangeName">Name of the workbook-scope named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRangeNoHeader(System.String,System.String)">
<summary>
Enables Linq queries against a named range that does not have a header row
</summary>
<param name="worksheetName">Name of the worksheet</param>
<param name="namedRangeName">Name of the named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.NamedRangeNoHeader(System.Int32,System.String)">
<summary>
Enables Linq queries against a named range that does not have a header row
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="namedRangeName">Name of the named range</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.GetWorksheetNames">
<summary>
Returns a list of worksheet names that the spreadsheet contains
</summary>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.GetNamedRanges">
<summary>
Returns a list of workbook-scope named ranges that the spreadsheet contains
</summary>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.GetNamedRanges(System.String)">
<summary>
Returns a list of worksheet-scope named ranges that the worksheet contains
</summary>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.GetColumnNames(System.String,System.String)">
<summary>
Returns a list of columns names that a named range contains
</summary>
<param name="worksheetName">Worksheet name to get the list of column names from</param>
<param name="namedRangeName">Named Range name to get the list of column names from</param>
</member>
<member name="M:LinqToExcel.IExcelQueryFactory.GetColumnNames(System.String)">
<summary>
Returns a list of columns names that a worksheet contains
</summary>
<param name="worksheetName">Worksheet name to get the list of column names from</param>
</member>
<member name="P:LinqToExcel.IExcelQueryFactory.FileName">
<summary>
Full path to the Excel spreadsheet
</summary>
</member>
<member name="P:LinqToExcel.IExcelQueryFactory.StrictMapping">
<summary>
Confirms all the worksheet columns are mapped to a property, and if not, throws a StrictMappingException
</summary>
</member>
<member name="P:LinqToExcel.IExcelQueryFactory.TrimSpaces">
<summary>
Indicates how to treat leading and trailing spaces in string values.
</summary>
</member>
<member name="P:LinqToExcel.IExcelQueryFactory.DatabaseEngine">
<summary>
Sets the database engine to use (spreadsheets ending in xlsx, xlsm, xlsb will always use the Ace engine)
</summary>
</member>
<member name="P:LinqToExcel.IExcelQueryFactory.UsePersistentConnection">
<summary>
If true, uses a single, persistent connection for the lifetime of the factory.
If false, a new connection is created for each query
Default is false
</summary>
</member>
<member name="M:LinqToExcel.Query.ExcelQueryExecutor.ExecuteScalar``1(Remotion.Data.Linq.QueryModel)">
<summary>
Executes a query with a scalar result, i.e. a query that ends with a result operator such as Count, Sum, or Average.
</summary>
</member>
<member name="M:LinqToExcel.Query.ExcelQueryExecutor.ExecuteSingle``1(Remotion.Data.Linq.QueryModel,System.Boolean)">
<summary>
Executes a query with a single result object, i.e. a query that ends with a result operator such as First, Last, Single, Min, or Max.
</summary>
</member>
<member name="M:LinqToExcel.Query.ExcelQueryExecutor.ExecuteCollection``1(Remotion.Data.Linq.QueryModel)">
<summary>
Executes a query with a collection result.
</summary>
</member>
<member name="M:LinqToExcel.Query.ExcelQueryExecutor.GetDataResults(LinqToExcel.Query.SqlParts,Remotion.Data.Linq.QueryModel)">
<summary>
Executes the sql query and returns the data results
</summary>
<typeparam name="T">Data type in the main from clause (queryModel.MainFromClause.ItemType)</typeparam>
<param name="queryModel">Linq query model</param>
</member>
<member name="M:LinqToExcel.Query.ExcelQueryExecutor.LogColumnMappingWarnings(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Logs a warning for any property to column mappings that do not exist in the excel worksheet
</summary>
<param name="Columns">List of columns in the worksheet</param>
</member>
<member name="M:LinqToExcel.Query.ExcelQueryExecutor.TrimStringValue(System.Object)">
<summary>
Trims leading and trailing spaces, based on the value of _args.TrimSpaces
</summary>
<param name="value">Input string value</param>
<returns>Trimmed string value</returns>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.#ctor(LinqToExcel.Logging.ILogManagerFactory)">
<param name="logManagerFactory">
Factory that facilitates the creation of an external log manager (i.e. log4net) to
allow internal methods of LinqToExcel to perform diagnostic logging.
</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.#ctor(System.String)">
<param name="fileName">Full path to the Excel spreadsheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.#ctor(System.String,LinqToExcel.Logging.ILogManagerFactory)">
<param name="fileName">Full path to the Excel spreadsheet</param>
<param name="logManagerFactory">
Factory that facilitates the creation of an external log manager (i.e. log4net) to
allow internal methods of LinqToExcel to perform diagnostic logging.
</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.AddMapping``1(System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String)">
<summary>
Add a column to property mapping
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="property">Class property to map to</param>
<param name="column">Worksheet column name to map from</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.AddMapping(System.String,System.String)">
<summary>
Add a column to property mapping
</summary>
<param name="propertyName">Class property to map to</param>
<param name="column">Worksheet column name to map from</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.AddMapping``1(System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String,System.Func{System.String,System.Object})">
<summary>
Add a column to property mapping with a transformation operation
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="property">Class property to map to</param>
<param name="column">Worksheet column name to map from</param>
<param name="transformation">Lambda expression that transforms the original string value to the desired property value</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.AddTransformation``1(System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.Func{System.String,System.Object})">
<summary>
Transforms a cell value in the spreadsheet to the desired property value
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="property">Class property value to transform</param>
<param name="transformation">Lambda expression that transforms the original string value to the desired property value</param>
<example>
AddTransformation{Person}(p => p.IsActive, x => x == "Y");
AddTransformation{Person}(p => p.IsYoung, x => DateTime.Parse(x) > new DateTime(2000, 1, 1));
</example>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.GetWorksheetNames">
<summary>
Returns a list of worksheet names that the spreadsheet contains
</summary>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.GetNamedRanges">
<summary>
Returns a list of workbook-scope named ranges that the spreadsheet contains
</summary>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.GetNamedRanges(System.String)">
<summary>
Returns a list of worksheet-scope named ranges that the worksheet contains
</summary>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.GetColumnNames(System.String)">
<summary>
Returns a list of columns names that a worksheet contains
</summary>
<param name="worksheetName">Worksheet name to get the list of column names from</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.GetColumnNames(System.String,System.String)">
<summary>
Returns a list of columns names that a worksheet contains
</summary>
<param name="worksheetName">Worksheet name to get the list of column names from</param>
<param name="namedRangeName">Named Range name to get the list of column names from</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1(System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1(System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet(System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet(System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRange``1(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="startRange"></param>
<param name="endRange"></param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRange(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRange(System.String,System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRange(System.String,System.String,System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRange``1(System.String,System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRange``1(System.String,System.String,System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetNoHeader">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetNoHeader(System.String)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetNoHeader(System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRangeNoHeader(System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRangeNoHeader(System.String,System.String,System.String)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetName">Name of the worksheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.WorksheetRangeNoHeader(System.String,System.String,System.Int32)">
<summary>
Enables Linq queries against an Excel worksheet that does not have a header row
</summary>
<param name="startRange">Upper left cell name of the range (eg 'B2')</param>
<param name="endRange">Bottom right cell name of the range (eg 'D4')</param>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRange``1(System.String)">
<summary>
Enables Linq queries against a workbook-scope named range
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="namedRangeName">Name of the workbook-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRange``1(System.String,System.String)">
<summary>
Enables Linq queries against a worksheet-scope named range
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetName">Name of the worksheet</param>
<param name="namedRangeName">Name of the worksheet-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRange``1(System.Int32,System.String)">
<summary>
Enables Linq queries against a worksheet-scope named range
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="namedRangeName">Name of the worksheet-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRange(System.String)">
<summary>
Enables Linq queries against a workbook-scope named range
</summary>
<param name="namedRangeName">Name of the workbook-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRange(System.String,System.String)">
<summary>
Enables Linq queries against a worksheet-scope named range
</summary>
<param name="worksheetName">Name of the worksheet</param>
<param name="namedRangeName">Name of the worksheet-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRange(System.Int32,System.String)">
<summary>
Enables Linq queries against a worksheet-scope named range
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="namedRangeName">Name of the worksheet-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRangeNoHeader(System.String)">
<summary>
Enables Linq queries against a workbook-scope named range that does not have a header row
</summary>
<param name="namedRangeName">Name of the workbook-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRangeNoHeader(System.Int32,System.String)">
<summary>
Enables Linq queries against a worksheet-scope named range that does not have a header row
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="namedRangeName">Name of the worksheet-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.NamedRangeNoHeader(System.String,System.String)">
<summary>
Enables Linq queries against a worksheet-scope named range that does not have a header row
</summary>
<param name="worksheetName">Name of the worksheet</param>
<param name="namedRangeName">Name of the worksheet-scope named range</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1(System.String,System.String,LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetName">Name of the worksheet</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1(System.Int32,System.String,LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet(System.String,System.String,LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetName">Name of the worksheet</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet(System.Int32,System.String,LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetName">Name of the worksheet</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
<param name="columnMappings">Column to property mappings</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet(System.Int32,System.String,System.Collections.Generic.Dictionary{System.String,System.String},LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
<param name="columnMappings">Column to property mappings</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetName">Name of the worksheet</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
<param name="columnMappings">Column to property mappings</param>
</member>
<member name="M:LinqToExcel.ExcelQueryFactory.Worksheet``1(System.Int32,System.String,System.Collections.Generic.Dictionary{System.String,System.String},LinqToExcel.Logging.ILogManagerFactory)">
<summary>
Enables Linq queries against an Excel worksheet
</summary>
<typeparam name="TSheetData">Class type to return row data as</typeparam>
<param name="worksheetIndex">Worksheet index ordered by name, not position in the workbook</param>
<param name="fileName">Full path to the Excel spreadsheet</param>
<param name="columnMappings">Column to property mappings</param>
</member>
<member name="P:LinqToExcel.ExcelQueryFactory.FileName">
<summary>
Full path to the Excel spreadsheet
</summary>
</member>
<member name="P:LinqToExcel.ExcelQueryFactory.StrictMapping">
<summary>
Confirms all the worksheet columns are mapped to a property, and if not, throws a StrictMappingException
</summary>
</member>
<member name="P:LinqToExcel.ExcelQueryFactory.TrimSpaces">
<summary>
Indicates how to treat leading and trailing spaces in string values.
</summary>
</member>
<member name="P:LinqToExcel.ExcelQueryFactory.ReadOnly">
<summary>
Opens the excel file in read-only mode
</summary>
</member>
<member name="P:LinqToExcel.ExcelQueryFactory.DatabaseEngine">
<summary>
Sets the database engine to use
(Spreadsheets ending in xlsx, xlsm, and xlsb must use the Ace database engine)
(If running 64 bit this defaults to ACE (JET doesn't work anyway), if running 32 bit this detaults to JET)
</summary>
</member>
<member name="P:LinqToExcel.ExcelQueryFactory.UsePersistentConnection">
<summary>
If true, uses a single, persistent connection for the lifetime of the factory.
If false, a new connection is created for each query
Default is false
</summary>
</member>
<member name="M:LinqToExcel.Extensions.CommonExtensions.SetProperty(System.Object,System.String,System.Object)">
<summary>
Sets the value of a property
</summary>
<param name="propertyName">Name of the property</param>
<param name="value">Value to set the property to</param>
</member>
<member name="M:LinqToExcel.Extensions.CommonExtensions.CallMethod(System.Object,System.String,System.Object[])">
<summary>
Calls a method
</summary>
<param name="methodName">Name of the method</param>
<param name="args">Method arguments</param>
<returns>Return value of the method</returns>
</member>
<member name="T:LinqToExcel.Query.StrictMappingType">
<summary>
Class property and worksheet mapping enforcemment type.
</summary>
</member>
<member name="F:LinqToExcel.Query.StrictMappingType.Both">
<summary>
All worksheet columns must map to a class property; all class properties must map to a worksheet columm.
</summary>
</member>
<member name="F:LinqToExcel.Query.StrictMappingType.ClassStrict">
<summary>
All class properties must map to a worksheet column; other worksheet columns are ignored.
</summary>
</member>
<member name="F:LinqToExcel.Query.StrictMappingType.None">
<summary>
No checks are made to enforce worksheet column or class property mappings.
</summary>
</member>
<member name="F:LinqToExcel.Query.StrictMappingType.WorksheetStrict">
<summary>
All worksheet columns must map to a class property; other class properties are ignored.
</summary>
</member>
<member name="T:LinqToExcel.Query.TrimSpacesType">
<summary>
Indicates how to treat leading and trailing spaces in string values.
</summary>
</member>
<member name="F:LinqToExcel.Query.TrimSpacesType.None">
<summary>
Do not perform any trimming.
</summary>
</member>
<member name="F:LinqToExcel.Query.TrimSpacesType.Start">
<summary>
Trim leading spaces from strings.
</summary>
</member>
<member name="F:LinqToExcel.Query.TrimSpacesType.End">
<summary>
Trim trailing spaces from strings.
</summary>
</member>
<member name="F:LinqToExcel.Query.TrimSpacesType.Both">
<summary>
Trim leading and trailing spaces from strings.
</summary>
</member>
<member name="M:LinqToExcel.Query.WhereClauseExpressionTreeVisitor.VisitUnaryExpression(System.Linq.Expressions.UnaryExpression)">
<summary>
This method is visited when the LinqToExcel.Row type is used in the query
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:LinqToExcel.Query.WhereClauseExpressionTreeVisitor.VisitMethodCallExpression(System.Linq.Expressions.MethodCallExpression)" -->
<member name="M:LinqToExcel.Query.WhereClauseExpressionTreeVisitor.GetColumnName(System.Linq.Expressions.Expression)">
<summary>
Retrieves the column name from a member expression or method call expression
</summary>
<param name="exp">Expression</param>
</member>
<member name="M:LinqToExcel.Query.WhereClauseExpressionTreeVisitor.GetColumnName(System.Linq.Expressions.MemberExpression)">
<summary>
Retrieves the column name from a member expression
</summary>
<param name="mExp">Member Expression</param>
</member>
<member name="M:LinqToExcel.Query.WhereClauseExpressionTreeVisitor.GetColumnName(System.Linq.Expressions.MethodCallExpression)">
<summary>
Retrieves the column name from a method call expression
</summary>
<param name="exp">Method Call Expression</param>
</member>
<member name="M:LinqToExcel.Row.#ctor(System.Collections.Generic.IList{LinqToExcel.Cell},System.Collections.Generic.IDictionary{System.String,System.Int32})">
<param name="cells">Cells contained within the row</param>
<param name="columnIndexMapping">Column name to cell index mapping</param>
</member>
<member name="P:LinqToExcel.Row.Item(System.String)">
<param name="columnName">Column Name</param>
</member>
<member name="P:LinqToExcel.Row.ColumnNames">
<summary>
List of column names in the row object
</summary>
</member>
</members>
</doc>