-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntityFramework.SqlServer.xml
2093 lines (2093 loc) · 153 KB
/
EntityFramework.SqlServer.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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework.SqlServer</name>
</assembly>
<members>
<member name="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions">
<summary>
Contains extension methods for the <see cref="T:System.Threading.Tasks.Task"/> class.
</summary>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.WithCurrentCulture``1(System.Threading.Tasks.Task{``0})">
<summary>
Configures an awaiter used to await this <see cref="T:System.Threading.Tasks.Task`1"/> to avoid
marshalling the continuation
back to the original context, but preserve the current culture and UI culture.
</summary>
<typeparam name="T">
The type of the result produced by the associated <see cref="T:System.Threading.Tasks.Task`1"/>.
</typeparam>
<param name="task">The task to be awaited on.</param>
<returns>An object used to await this task.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.WithCurrentCulture(System.Threading.Tasks.Task)">
<summary>
Configures an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/> to avoid
marshalling the continuation
back to the original context, but preserve the current culture and UI culture.
</summary>
<param name="task">The task to be awaited on.</param>
<returns>An object used to await this task.</returns>
</member>
<member name="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1">
<summary>
Provides an awaitable object that allows for awaits on <see cref="T:System.Threading.Tasks.Task`1"/> that
preserve the culture.
</summary>
<typeparam name="T">
The type of the result produced by the associated <see cref="T:System.Threading.Tasks.Task`1"/>.
</typeparam>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>
Constructs a new instance of the <see cref="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1"/> class.
</summary>
<param name="task">The task to be awaited on.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.GetAwaiter">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>An awaiter instance.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.OnCompleted(System.Action)">
<summary>This method is not implemented and should not be called.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>
Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task`1"/> associated with this
<see cref="T:System.Runtime.CompilerServices.TaskAwaiter`1"/>.
</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">
The <paramref name="continuation"/> argument is null
(Nothing in Visual Basic).
</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.IsCompleted">
<summary>
Gets whether this <see cref="T:System.Threading.Tasks.Task">Task</see> has completed.
</summary>
<remarks>
<see cref="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.IsCompleted"/> will return true when the Task is in one of the three
final states: <see cref="F:System.Threading.Tasks.TaskStatus.RanToCompletion">RanToCompletion</see>,
<see cref="F:System.Threading.Tasks.TaskStatus.Faulted">Faulted</see>, or
<see cref="F:System.Threading.Tasks.TaskStatus.Canceled">Canceled</see>.
</remarks>
</member>
<member name="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter">
<summary>
Provides an awaitable object that allows for awaits on <see cref="T:System.Threading.Tasks.Task"/> that
preserve the culture.
</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>
Constructs a new instance of the <see cref="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter"/> class.
</summary>
<param name="task">The task to be awaited on.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.GetAwaiter">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>An awaiter instance.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.OnCompleted(System.Action)">
<summary>This method is not implemented and should not be called.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.UnsafeOnCompleted(System.Action)">
<summary>
Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this
<see cref="T:System.Runtime.CompilerServices.TaskAwaiter"/>.
</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">
The <paramref name="continuation"/> argument is null
(Nothing in Visual Basic).
</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.IsCompleted">
<summary>
Gets whether this <see cref="T:System.Threading.Tasks.Task">Task</see> has completed.
</summary>
<remarks>
<see cref="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.IsCompleted"/> will return true when the Task is in one of the three
final states: <see cref="F:System.Threading.Tasks.TaskStatus.RanToCompletion">RanToCompletion</see>,
<see cref="F:System.Threading.Tasks.TaskStatus.Faulted">Faulted</see>, or
<see cref="F:System.Threading.Tasks.TaskStatus.Canceled">Canceled</see>.
</remarks>
</member>
<member name="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy">
<summary>
An <see cref="T:System.Data.Entity.Infrastructure.IDbExecutionStrategy"/> that retries actions that throw exceptions caused by SQL Azure transient failures.
</summary>
<remarks>
This execution strategy will retry the operation on <see cref="T:System.TimeoutException"/> and <see cref="T:System.Data.SqlClient.SqlException"/>
if the <see cref="P:System.Data.SqlClient.SqlException.Errors"/> contains any of the following error numbers:
40613, 40501, 40197, 10929, 10928, 10060, 10054, 10053, 233, 64 and 20
</remarks>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.#ctor">
<summary>
Creates a new instance of <see cref="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy"/>.
</summary>
<remarks>
The default retry limit is 5, which means that the total amount of time spent between retries is 26 seconds plus the random factor.
</remarks>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.#ctor(System.Int32,System.TimeSpan)">
<summary>
Creates a new instance of <see cref="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy"/> with the specified limits for
number of retries and the delay between retries.
</summary>
<param name="maxRetryCount"> The maximum number of retry attempts. </param>
<param name="maxDelay"> The maximum delay in milliseconds between retries. </param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.ShouldRetryOn(System.Exception)">
<inheritdoc/>
</member>
<member name="T:System.Data.Entity.SqlServer.SqlFunctions">
<summary>
Contains function stubs that expose SqlServer methods in Linq to Entities.
</summary>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.ChecksumAggregate(System.Collections.Generic.IEnumerable{System.Int32})">
<summary>Returns the checksum of the values in a collection. Null values are ignored.</summary>
<returns>The checksum computed from the input collection.</returns>
<param name="arg">The collection of values over which the checksum is computed.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.ChecksumAggregate(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
<summary>Returns the checksum of the values in a collection. Null values are ignored.</summary>
<returns>The checksum computed from the input collection.</returns>
<param name="arg">The collection of values over which the checksum is computed.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Ascii(System.String)">
<summary>Returns the ASCII code value of the left-most character of a character expression.</summary>
<returns>The ASCII code of the first character in the input string.</returns>
<param name="arg">A valid string.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Char(System.Nullable{System.Int32})">
<summary>Returns the character that corresponds to the specified integer ASCII value.</summary>
<returns>The character that corresponds to the specified ASCII value.</returns>
<param name="arg">An ASCII code.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String)">
<summary>Returns the starting position of one expression found within another expression.</summary>
<returns>The starting position of toFind if it is found in toSearch .</returns>
<param name="toFind">The string expression to be found.</param>
<param name="toSearch">The string expression to be searched.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[])">
<summary>Returns the starting position of one expression found within another expression.</summary>
<returns>The starting position of toFind if it is found in toSearch .</returns>
<param name="toFind">The string expression to be found.</param>
<param name="toSearch">The string expression to be searched.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String,System.Nullable{System.Int32})">
<summary>Returns the starting position of one expression found within another expression.</summary>
<returns>The starting position of toFind if it is found in toSearch .</returns>
<param name="toFind">The string expression to be found.</param>
<param name="toSearch">The string expression to be searched.</param>
<param name="startLocation">The character position in toSearch where searching begins.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[],System.Nullable{System.Int32})">
<summary>Returns the starting position of one expression found within another expression.</summary>
<returns>The starting position of toFind if it is found in toSearch .</returns>
<param name="toFind">The string expression to be found.</param>
<param name="toSearch">The string expression to be searched.</param>
<param name="startLocation">The character position in toSearch where searching begins.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String,System.Nullable{System.Int64})">
<summary>Returns the starting position of one expression found within another expression.</summary>
<returns>
A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" /> value that is the starting position of toFind if it is found in toSearch .
</returns>
<param name="toFind">The string expression to be found.</param>
<param name="toSearch">The string expression to be searched.</param>
<param name="startLocation">The character position in toSearch where searching begins.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[],System.Nullable{System.Int64})">
<summary>Returns the starting position of one expression found within another expression.</summary>
<returns>The starting position of toFind if it is found in toSearch .</returns>
<param name="toFind">The string expression to be found.</param>
<param name="toSearch">The string expression to be searched.</param>
<param name="startLocation">The character position in toSearch where searching begins.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Difference(System.String,System.String)">
<summary>Returns an integer value that indicates the difference between the SOUNDEX values of two character expressions.</summary>
<returns>The SOUNDEX difference between the two strings.</returns>
<param name="string1">The first string.</param>
<param name="string2">The second string.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.NChar(System.Nullable{System.Int32})">
<summary>Returns the Unicode character with the specified integer code, as defined by the Unicode standard.</summary>
<returns>The character that corresponds to the input character code.</returns>
<param name="arg">A character code.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.PatIndex(System.String,System.String)">
<summary>Returns the starting position of the first occurrence of a pattern in a specified expression, or zeros if the pattern is not found, on all valid text and character data types.</summary>
<returns>The starting character position where the string pattern was found.</returns>
<param name="stringPattern">A string pattern to search for.</param>
<param name="target">The string to search.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.QuoteName(System.String)">
<summary>Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server delimited identifier.</summary>
<returns>The original string with brackets added.</returns>
<param name="stringArg">The expression that quote characters will be added to.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.QuoteName(System.String,System.String)">
<summary>Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server delimited identifier.</summary>
<returns>The original string with the specified quote characters added.</returns>
<param name="stringArg">The expression that quote characters will be added to.</param>
<param name="quoteCharacter">The one-character string to use as the delimiter. It can be a single quotation mark ( ' ), a left or right bracket ( [ ] ), or a double quotation mark ( " ). If quote_character is not specified, brackets are used.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Replicate(System.String,System.Nullable{System.Int32})">
<summary>Repeats a string value a specified number of times.</summary>
<returns>The target string, repeated the number of times specified by count .</returns>
<param name="target">A valid string.</param>
<param name="count">The value that specifies how many time to repeat target .</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.SoundCode(System.String)">
<summary>Converts an alphanumeric string to a four-character (SOUNDEX) code to find similar-sounding words or names.</summary>
<returns>The SOUNDEX code of the input string.</returns>
<param name="arg">A valid string.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Space(System.Nullable{System.Int32})">
<summary>Returns a string of repeated spaces.</summary>
<returns>A string that consists of the specified number of spaces.</returns>
<param name="arg1">The number of spaces. If negative, a null string is returned.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double})">
<summary>Returns character data converted from numeric data.</summary>
<returns>The numeric input expression converted to a string.</returns>
<param name="number">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal})">
<summary>Returns character data converted from numeric data.</summary>
<returns>The input expression converted to a string.</returns>
<param name="number">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double},System.Nullable{System.Int32})">
<summary>Returns character data converted from numeric data.</summary>
<returns>The numeric input expression converted to a string.</returns>
<param name="number">A numeric expression.</param>
<param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal},System.Nullable{System.Int32})">
<summary>Returns character data converted from numeric data.</summary>
<returns>The input expression converted to a string.</returns>
<param name="number">A numeric expression.</param>
<param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double},System.Nullable{System.Int32},System.Nullable{System.Int32})">
<summary>Returns character data converted from numeric data.</summary>
<returns>The numeric input expression converted to a string.</returns>
<param name="number">A numeric expression.</param>
<param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
<param name="decimalArg">The number of places to the right of the decimal point. decimal must be less than or equal to 16. If decimal is more than 16 then the result is truncated to sixteen places to the right of the decimal point.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal},System.Nullable{System.Int32},System.Nullable{System.Int32})">
<summary>Returns character data converted from numeric data.</summary>
<returns>The input expression converted to a string.</returns>
<param name="number">A numeric expression.</param>
<param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
<param name="decimalArg">The number of places to the right of the decimal point. decimal must be less than or equal to 16. If decimal is more than 16 then the result is truncated to sixteen places to the right of the decimal point.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Stuff(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.String)">
<summary>Inserts a string into another string. It deletes a specified length of characters in the target string at the start position and then inserts the second string into the target string at the start position.</summary>
<returns>A string consisting of the two strings.</returns>
<param name="stringInput">The target string.</param>
<param name="start">The character position in stringinput where the replacement string is to be inserted.</param>
<param name="length">The number of characters to delete from stringInput . If length is longer than stringInput , deletion occurs up to the last character in stringReplacement .</param>
<param name="stringReplacement">The substring to be inserted into stringInput .</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Unicode(System.String)">
<summary>Returns the integer value, as defined by the Unicode standard, for the first character of the input expression.</summary>
<returns>The character code for the first character in the input string.</returns>
<param name="arg">A valid string.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Acos(System.Nullable{System.Double})">
<summary>A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.</summary>
<returns>The angle, in radians, defined by the input cosine value.</returns>
<param name="arg1">The cosine of an angle.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Acos(System.Nullable{System.Decimal})">
<summary>A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg1">The cosine of an angle.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Asin(System.Nullable{System.Double})">
<summary>A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg">The sine of an angle.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Asin(System.Nullable{System.Decimal})">
<summary>A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg">The sine of an angle.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan(System.Nullable{System.Double})">
<summary>A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg">The tangent of an angle.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan(System.Nullable{System.Decimal})">
<summary>A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg">The tangent of an angle.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan2(System.Nullable{System.Double},System.Nullable{System.Double})">
<summary>Returns the positive angle, in radians, between the positive x-axis and the ray from the origin through the point (x, y), where x and y are the two specified numerical values. The first parameter passed to the function is the y-value and the second parameter is the x-value.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg1">The y-coordinate of a point.</param>
<param name="arg2">The x-coordinate of a point.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan2(System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
<summary>Returns the positive angle, in radians, between the positive x-axis and the ray from the origin through the point (x, y), where x and y are the two specified numerical values. The first parameter passed to the function is the y-value and the second parameter is the x-value.</summary>
<returns>An angle, measured in radians.</returns>
<param name="arg1">The y-coordinate of a point.</param>
<param name="arg2">The x-coordinate of a point.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cos(System.Nullable{System.Double})">
<summary>Returns the trigonometric cosine of the specified angle, in radians, in the specified expression.</summary>
<returns>The trigonometric cosine of the specified angle.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cos(System.Nullable{System.Decimal})">
<summary>Returns the trigonometric cosine of the specified angle, in radians, in the specified expression.</summary>
<returns>The trigonometric cosine of the specified angle.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cot(System.Nullable{System.Double})">
<summary>A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.</summary>
<returns>The trigonometric cotangent of the specified angle.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cot(System.Nullable{System.Decimal})">
<summary>A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.</summary>
<returns>The trigonometric cotangent of the specified angle.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Int32})">
<summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
<returns>The specified angle converted to degrees.</returns>
<param name="arg1">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Int64})">
<summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
<returns>The specified angle converted to degrees.</returns>
<param name="arg1">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Decimal})">
<summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
<returns>The specified angle converted to degrees.</returns>
<param name="arg1">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Double})">
<summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
<returns>The specified angle converted to degrees.</returns>
<param name="arg1">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Exp(System.Nullable{System.Double})">
<summary>Returns the exponential value of the specified float expression.</summary>
<returns>The constant e raised to the power of the input value.</returns>
<param name="arg">The input value.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Exp(System.Nullable{System.Decimal})">
<summary>Returns the exponential value of the specified float expression.</summary>
<returns>The constant e raised to the power of the input value.</returns>
<param name="arg">The input value.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log(System.Nullable{System.Double})">
<summary>Returns the natural logarithm of the specified input value.</summary>
<returns>The natural logarithm of the input value.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log(System.Nullable{System.Decimal})">
<summary>Returns the natural logarithm of the specified input value.</summary>
<returns>The natural logarithm of the input value.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log10(System.Nullable{System.Double})">
<summary>Returns the base-10 logarithm of the specified input value.</summary>
<returns>The base-10 logarithm of the input value.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log10(System.Nullable{System.Decimal})">
<summary>Returns the base-10 logarithm of the specified input value.</summary>
<returns>The base-10 logarithm of the input value.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Pi">
<summary>Returns the constant value of pi.</summary>
<returns>The numeric value of pi.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Int32})">
<summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
<returns>The radian measure of the specified angle.</returns>
<param name="arg">The angle, measured in degrees</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Int64})">
<summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
<returns>The radian measure of the specified angle.</returns>
<param name="arg">The angle, measured in degrees</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Decimal})">
<summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
<returns>The radian measure of the specified angle.</returns>
<param name="arg">The angle, measured in degrees.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Double})">
<summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
<returns>The radian measure of the specified angle.</returns>
<param name="arg">The angle, measured in degrees.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Rand">
<summary>Returns a pseudo-random float value from 0 through 1, exclusive.</summary>
<returns>The pseudo-random value.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Rand(System.Nullable{System.Int32})">
<summary>Returns a pseudo-random float value from 0 through 1, exclusive.</summary>
<returns>The pseudo-random value.</returns>
<param name="seed">The seed value. If seed is not specified, the SQL Server Database Engine assigns a seed value at random. For a specified seed value, the result returned is always the same.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Int32})">
<summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
<returns>The sign of the input expression.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Int64})">
<summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
<returns>The sign of the input expression.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Decimal})">
<summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
<returns>The sign of the input expression.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Double})">
<summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
<returns>The sign of the input expression.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sin(System.Nullable{System.Decimal})">
<summary>Returns the trigonometric sine of the specified angle.</summary>
<returns>The trigonometric sine of the input expression.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sin(System.Nullable{System.Double})">
<summary>Returns the trigonometric sine of the specified angle.</summary>
<returns>The trigonometric sine of the input expression.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.SquareRoot(System.Nullable{System.Double})">
<summary>Returns the square root of the specified number.</summary>
<returns>The square root of the input value.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.SquareRoot(System.Nullable{System.Decimal})">
<summary>Returns the square root of the specified number.</summary>
<returns>The square root of the input value.</returns>
<param name="arg">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Square(System.Nullable{System.Double})">
<summary>Returns the square of the specified number.</summary>
<returns>The square of the input value.</returns>
<param name="arg1">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Square(System.Nullable{System.Decimal})">
<summary>Returns the square of the specified number.</summary>
<returns>The square of the input value.</returns>
<param name="arg1">A numeric expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Tan(System.Nullable{System.Double})">
<summary>Returns the trigonometric tangent of the input expression.</summary>
<returns>The tangent of the input angle.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Tan(System.Nullable{System.Decimal})">
<summary>Returns the trigonometric tangent of the input expression.</summary>
<returns>The tangent of the input angle.</returns>
<param name="arg">An angle, measured in radians.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.DateTime})">
<summary>Returns a new datetime value based on adding an interval to the specified date.</summary>
<returns>The new date.</returns>
<param name="datePartArg">The part of the date to increment. </param>
<param name="number">The value used to increment a date by a specified amount.</param>
<param name="date">The date to increment.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.TimeSpan})">
<summary>Returns a new time span value based on adding an interval to the specified time span.</summary>
<returns>The new time span.</returns>
<param name="datePartArg">The part of the date to increment.</param>
<param name="number">The value used to increment a date by a specified amount.</param>
<param name="time">The time span to increment.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.DateTimeOffset})">
<summary>Returns a new date value based on adding an interval to the specified date.</summary>
<returns>The new point in time, expressed as a date and time of day, relative to Coordinated Universal Time (UTC).</returns>
<param name="datePartArg">The part of the date to increment.</param>
<param name="number">The value used to increment a date by a specified amount.</param>
<param name="dateTimeOffsetArg">The date to increment.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.String)">
<summary>Returns a new datetime value based on adding an interval to the specified date.</summary>
<returns>
A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" /> value that is the new date.
</returns>
<param name="datePartArg">The part of the date to increment.</param>
<param name="number">The value used to increment a date by a specified amount.</param>
<param name="date">The date to increment.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.DateTime})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.DateTimeOffset})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.TimeSpan})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The value specifying the number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.String)">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.String)">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.String)">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.String)">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.DateTime})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.DateTimeOffset})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.TimeSpan})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.TimeSpan})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two Dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTimeOffset})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTime})">
<summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
<returns>The number of time intervals between the two dates.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="startDate">The first date.</param>
<param name="endDate">The second date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.DateTime})">
<summary>Returns a character string that represents the specified datepart of the specified date.</summary>
<returns>The specified part of the specified date.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.String)">
<summary>Returns a character string that represents the specified datepart of the specified date.</summary>
<returns>The specified part of the specified date.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.TimeSpan})">
<summary>Returns a character string that represents the specified datepart of the specified date.</summary>
<returns>The specified part of the specified date.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.DateTimeOffset})">
<summary>Returns a character string that represents the specified datepart of the specified date.</summary>
<returns>The specified part of the specified date.</returns>
<param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.DateTime})">
<summary>Returns an integer that represents the specified datepart of the specified date.</summary>
<returns>The the specified datepart of the specified date.</returns>
<param name="datePartArg">The part of the date to return the value.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.DateTimeOffset})">
<summary>Returns an integer that represents the specified datepart of the specified date.</summary>
<returns>The specified datepart of the specified date.</returns>
<param name="datePartArg">The part of the date to return the value.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.String)">
<summary>Returns an integer that represents the specified datepart of the specified date.</summary>
<returns>The specified datepart of the specified date.</returns>
<param name="datePartArg">The part of the date to return the value.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.TimeSpan})">
<summary>Returns an integer that represents the specified datepart of the specified date.</summary>
<returns>The specified datepart of the specified date.</returns>
<param name="datePartArg">The part of the date to return the value.</param>
<param name="date">The date.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.GetDate">
<summary>Returns the current database system timestamp as a datetime value without the database time zone offset. This value is derived from the operating system of the computer on which the instance of SQL Server is running.</summary>
<returns>The current database timestamp.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.GetUtcDate">
<summary>Returns the current database system timestamp as a datetime value. The database time zone offset is not included. This value represents the current UTC time (Coordinated Universal Time). This value is derived from the operating system of the computer on which the instance of SQL Server is running.</summary>
<returns>The current database UTC timestamp.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Boolean})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Double})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Decimal})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.DateTime})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.TimeSpan})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.DateTimeOffset})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.String)">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Byte[])">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Guid})">
<summary>Returns the number of bytes used to represent any expression.</summary>
<returns>The number of bytes in the input value.</returns>
<param name="arg">The value to be examined for data length.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String)">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[])">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The character array for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid})">
<summary>Returns the checksum value computed over the input argument.</summary>
<returns>The checksum computed over the input value.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double},System.Nullable{System.Double})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String,System.String)">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[],System.Byte[])">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The character array for which the checksum is calculated.</param>
<param name="arg2">The character array for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid},System.Nullable{System.Guid})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Double})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal},System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String,System.String,System.String)">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[],System.Byte[],System.Byte[])">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The character array for which the checksum is calculated.</param>
<param name="arg2">The character array for which the checksum is calculated.</param>
<param name="arg3">The character array for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid})">
<summary>Returns the checksum value computed over the input arguments.</summary>
<returns>The checksum computed over the input values.</returns>
<param name="arg1">The value for which the checksum is calculated.</param>
<param name="arg2">The value for which the checksum is calculated.</param>
<param name="arg3">The value for which the checksum is calculated.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CurrentTimestamp">
<summary>Returns the current date and time. </summary>
<returns>The current date and time.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.CurrentUser">
<summary>Returns the name of the current user.</summary>
<returns>The name of the current user.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.HostName">
<summary>Returns the workstation name.</summary>
<returns>The name of the workstation.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.UserName(System.Nullable{System.Int32})">
<summary>Returns a database user name corresponding to a specified identification number.</summary>
<returns>The user name.</returns>
<param name="arg">A user ID.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.UserName">
<summary>Returns a database user name corresponding to a specified identification number.</summary>
<returns>The user name.</returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.IsNumeric(System.String)">
<summary>Indicates whether the input value is a valid numeric type.</summary>
<returns>1 if the input expression is a valid numeric data type; otherwise, 0.</returns>
<param name="arg">A string expression.</param>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlFunctions.IsDate(System.String)">
<summary>Indicates whether the input value is a valid date or time.</summary>
<returns>1 if the input expression is a valid date or time value of datetime or smalldatetime data types; otherwise, 0.</returns>
<param name="arg">The tested value.</param>
</member>
<member name="T:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator">
<summary>
Provider to convert provider agnostic migration operations into SQL commands
that can be run against a Microsoft SQL Server database.
</summary>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.IsPermissionDeniedError(System.Exception)">
<summary>
Determines if a provider specific exception corresponds to a database-level permission denied error.
</summary>
<param name="exception">The database exception.</param>
<returns> true if the supplied exception corresponds to a database-level permission denied error; otherwise false. </returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Collections.Generic.IEnumerable{System.Data.Entity.Migrations.Model.MigrationOperation},System.String)">
<summary>
Converts a set of migration operations into Microsoft SQL Server specific SQL.
</summary>
<param name="migrationOperations"> The operations to be converted. </param>
<param name="providerManifestToken"> Token representing the version of SQL Server being targeted (i.e. "2005", "2008"). </param>
<returns> A list of SQL statements to be executed to perform the migration operations. </returns>
</member>
<member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateProcedureBody(System.Collections.Generic.ICollection{System.Data.Entity.Core.Common.CommandTrees.DbModificationCommandTree},System.String,System.String)">
<summary>
Generates the SQL body for a stored procedure.
</summary>
<param name="commandTrees">The command trees representing the commands for an insert, update or delete operation.</param>
<param name="rowsAffectedParameter">The rows affected parameter name.</param>
<param name="providerManifestToken">The provider manifest token.</param>
<returns>The SQL body for the stored procedure.</returns>
</member>