프로젝트

일반

사용자정보

개정판 42d49521

ID42d49521510c1626c5e874159d7b7c98183c9c8a
상위 43e1d368
하위 1d79913e

김태성이(가) 약 2년 전에 추가함

ISSUE #0000 빠진코드 추가

Change-Id: I85a195fad05a10e3f7beea0e1bcf30e42386151e

차이점 보기:

ConvertService/ServiceBase/PEMSS/Plugin/EntityFramework.SqlServer.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>EntityFramework.SqlServer</name>
5
    </assembly>
6
    <members>
7
        <member name="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions">
8
            <summary>
9
            Contains extension methods for the <see cref="T:System.Threading.Tasks.Task"/> class.
10
            </summary>
11
        </member>
12
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.WithCurrentCulture``1(System.Threading.Tasks.Task{``0})">
13
            <summary>
14
            Configures an awaiter used to await this <see cref="T:System.Threading.Tasks.Task`1"/> to avoid
15
            marshalling the continuation
16
            back to the original context, but preserve the current culture and UI culture.
17
            </summary>
18
            <typeparam name="T">
19
            The type of the result produced by the associated <see cref="T:System.Threading.Tasks.Task`1"/>.
20
            </typeparam>
21
            <param name="task">The task to be awaited on.</param>
22
            <returns>An object used to await this task.</returns>
23
        </member>
24
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.WithCurrentCulture(System.Threading.Tasks.Task)">
25
            <summary>
26
            Configures an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/> to avoid
27
            marshalling the continuation
28
            back to the original context, but preserve the current culture and UI culture.
29
            </summary>
30
            <param name="task">The task to be awaited on.</param>
31
            <returns>An object used to await this task.</returns>
32
        </member>
33
        <member name="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1">
34
            <summary>
35
            Provides an awaitable object that allows for awaits on <see cref="T:System.Threading.Tasks.Task`1"/> that
36
            preserve the culture.
37
            </summary>
38
            <typeparam name="T">
39
            The type of the result produced by the associated <see cref="T:System.Threading.Tasks.Task`1"/>.
40
            </typeparam>
41
            <remarks>This type is intended for compiler use only.</remarks>
42
        </member>
43
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
44
            <summary>
45
            Constructs a new instance of the <see cref="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1"/> class.
46
            </summary>
47
            <param name="task">The task to be awaited on.</param>
48
        </member>
49
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.GetAwaiter">
50
            <summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
51
            <returns>An awaiter instance.</returns>
52
            <remarks>This method is intended for compiler user rather than use directly in code.</remarks>
53
        </member>
54
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.GetResult">
55
            <summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
56
            <returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
57
            <exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
58
            <exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
59
            <exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
60
        </member>
61
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.OnCompleted(System.Action)">
62
            <summary>This method is not implemented and should not be called.</summary>
63
            <param name="continuation">The action to invoke when the await operation completes.</param>
64
        </member>
65
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.UnsafeOnCompleted(System.Action)">
66
            <summary>
67
            Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task`1"/> associated with this
68
            <see cref="T:System.Runtime.CompilerServices.TaskAwaiter`1"/>.
69
            </summary>
70
            <param name="continuation">The action to invoke when the await operation completes.</param>
71
            <exception cref="T:System.ArgumentNullException">
72
            The <paramref name="continuation"/> argument is null
73
            (Nothing in Visual Basic).
74
            </exception>
75
            <exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
76
            <remarks>This method is intended for compiler user rather than use directly in code.</remarks>
77
        </member>
78
        <member name="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.IsCompleted">
79
            <summary>
80
            Gets whether this <see cref="T:System.Threading.Tasks.Task">Task</see> has completed.
81
            </summary>
82
            <remarks>
83
            <see cref="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter`1.IsCompleted"/> will return true when the Task is in one of the three
84
            final states: <see cref="F:System.Threading.Tasks.TaskStatus.RanToCompletion">RanToCompletion</see>,
85
            <see cref="F:System.Threading.Tasks.TaskStatus.Faulted">Faulted</see>, or
86
            <see cref="F:System.Threading.Tasks.TaskStatus.Canceled">Canceled</see>.
87
            </remarks>
88
        </member>
89
        <member name="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter">
90
            <summary>
91
            Provides an awaitable object that allows for awaits on <see cref="T:System.Threading.Tasks.Task"/> that
92
            preserve the culture.
93
            </summary>
94
            <remarks>This type is intended for compiler use only.</remarks>
95
        </member>
96
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.#ctor(System.Threading.Tasks.Task)">
97
            <summary>
98
            Constructs a new instance of the <see cref="T:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter"/> class.
99
            </summary>
100
            <param name="task">The task to be awaited on.</param>
101
        </member>
102
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.GetAwaiter">
103
            <summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
104
            <returns>An awaiter instance.</returns>
105
            <remarks>This method is intended for compiler user rather than use directly in code.</remarks>
106
        </member>
107
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.GetResult">
108
            <summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
109
            <exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
110
            <exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
111
            <exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
112
        </member>
113
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.OnCompleted(System.Action)">
114
            <summary>This method is not implemented and should not be called.</summary>
115
            <param name="continuation">The action to invoke when the await operation completes.</param>
116
        </member>
117
        <member name="M:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.UnsafeOnCompleted(System.Action)">
118
            <summary>
119
            Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this
120
            <see cref="T:System.Runtime.CompilerServices.TaskAwaiter"/>.
121
            </summary>
122
            <param name="continuation">The action to invoke when the await operation completes.</param>
123
            <exception cref="T:System.ArgumentNullException">
124
            The <paramref name="continuation"/> argument is null
125
            (Nothing in Visual Basic).
126
            </exception>
127
            <exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
128
            <remarks>This method is intended for compiler user rather than use directly in code.</remarks>
129
        </member>
130
        <member name="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.IsCompleted">
131
            <summary>
132
            Gets whether this <see cref="T:System.Threading.Tasks.Task">Task</see> has completed.
133
            </summary>
134
            <remarks>
135
            <see cref="P:System.Data.Entity.SqlServer.Utilities.TaskExtensions.CultureAwaiter.IsCompleted"/> will return true when the Task is in one of the three
136
            final states: <see cref="F:System.Threading.Tasks.TaskStatus.RanToCompletion">RanToCompletion</see>,
137
            <see cref="F:System.Threading.Tasks.TaskStatus.Faulted">Faulted</see>, or
138
            <see cref="F:System.Threading.Tasks.TaskStatus.Canceled">Canceled</see>.
139
            </remarks>
140
        </member>
141
        <member name="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy">
142
            <summary>
143
            An <see cref="T:System.Data.Entity.Infrastructure.IDbExecutionStrategy"/> that retries actions that throw exceptions caused by SQL Azure transient failures.
144
            </summary>
145
            <remarks>
146
            This execution strategy will retry the operation on <see cref="T:System.TimeoutException"/> and <see cref="T:System.Data.SqlClient.SqlException"/>
147
            if the <see cref="P:System.Data.SqlClient.SqlException.Errors"/> contains any of the following error numbers:
148
            40613, 40501, 40197, 10929, 10928, 10060, 10054, 10053, 233, 64 and 20
149
            </remarks>
150
        </member>
151
        <member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.#ctor">
152
            <summary>
153
            Creates a new instance of <see cref="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy"/>.
154
            </summary>
155
            <remarks>
156
            The default retry limit is 5, which means that the total amount of time spent between retries is 26 seconds plus the random factor.
157
            </remarks>
158
        </member>
159
        <member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.#ctor(System.Int32,System.TimeSpan)">
160
            <summary>
161
            Creates a new instance of <see cref="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy"/> with the specified limits for
162
            number of retries and the delay between retries.
163
            </summary>
164
            <param name="maxRetryCount"> The maximum number of retry attempts. </param>
165
            <param name="maxDelay"> The maximum delay in milliseconds between retries. </param>
166
        </member>
167
        <member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.ShouldRetryOn(System.Exception)">
168
            <inheritdoc/>
169
        </member>
170
        <member name="T:System.Data.Entity.SqlServer.SqlFunctions">
171
            <summary>
172
            Contains function stubs that expose SqlServer methods in Linq to Entities.
173
            </summary>
174
        </member>
175
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.ChecksumAggregate(System.Collections.Generic.IEnumerable{System.Int32})">
176
            <summary>Returns the checksum of the values in a collection. Null values are ignored.</summary>
177
            <returns>The checksum computed from the input collection.</returns>
178
            <param name="arg">The collection of values over which the checksum is computed.</param>
179
        </member>
180
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.ChecksumAggregate(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
181
            <summary>Returns the checksum of the values in a collection. Null values are ignored.</summary>
182
            <returns>The checksum computed from the input collection.</returns>
183
            <param name="arg">The collection of values over which the checksum is computed.</param>
184
        </member>
185
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Ascii(System.String)">
186
            <summary>Returns the ASCII code value of the left-most character of a character expression.</summary>
187
            <returns>The ASCII code of the first character in the input string.</returns>
188
            <param name="arg">A valid string.</param>
189
        </member>
190
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Char(System.Nullable{System.Int32})">
191
            <summary>Returns the character that corresponds to the specified integer ASCII value.</summary>
192
            <returns>The character that corresponds to the specified ASCII value.</returns>
193
            <param name="arg">An ASCII code.</param>
194
        </member>
195
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String)">
196
            <summary>Returns the starting position of one expression found within another expression.</summary>
197
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
198
            <param name="toFind">The string expression to be found.</param>
199
            <param name="toSearch">The string expression to be searched.</param>
200
        </member>
201
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[])">
202
            <summary>Returns the starting position of one expression found within another expression.</summary>
203
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
204
            <param name="toFind">The string expression to be found.</param>
205
            <param name="toSearch">The string expression to be searched.</param>
206
        </member>
207
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String,System.Nullable{System.Int32})">
208
            <summary>Returns the starting position of one expression found within another expression.</summary>
209
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
210
            <param name="toFind">The string expression to be found.</param>
211
            <param name="toSearch">The string expression to be searched.</param>
212
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
213
        </member>
214
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[],System.Nullable{System.Int32})">
215
            <summary>Returns the starting position of one expression found within another expression.</summary>
216
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
217
            <param name="toFind">The string expression to be found.</param>
218
            <param name="toSearch">The string expression to be searched.</param>
219
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
220
        </member>
221
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String,System.Nullable{System.Int64})">
222
            <summary>Returns the starting position of one expression found within another expression.</summary>
223
            <returns>
224
            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 .
225
            </returns>
226
            <param name="toFind">The string expression to be found.</param>
227
            <param name="toSearch">The string expression to be searched.</param>
228
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
229
        </member>
230
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[],System.Nullable{System.Int64})">
231
            <summary>Returns the starting position of one expression found within another expression.</summary>
232
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
233
            <param name="toFind">The string expression to be found.</param>
234
            <param name="toSearch">The string expression to be searched.</param>
235
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
236
        </member>
237
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Difference(System.String,System.String)">
238
            <summary>Returns an integer value that indicates the difference between the SOUNDEX values of two character expressions.</summary>
239
            <returns>The SOUNDEX difference between the two strings.</returns>
240
            <param name="string1">The first string.</param>
241
            <param name="string2">The second string.</param>
242
        </member>
243
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.NChar(System.Nullable{System.Int32})">
244
            <summary>Returns the Unicode character with the specified integer code, as defined by the Unicode standard.</summary>
245
            <returns>The character that corresponds to the input character code.</returns>
246
            <param name="arg">A character code.</param>
247
        </member>
248
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.PatIndex(System.String,System.String)">
249
            <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>
250
            <returns>The starting character position where the string pattern was found.</returns>
251
            <param name="stringPattern">A string pattern to search for.</param>
252
            <param name="target">The string to search.</param>
253
        </member>
254
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.QuoteName(System.String)">
255
            <summary>Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server delimited identifier.</summary>
256
            <returns>The original string with brackets added.</returns>
257
            <param name="stringArg">The expression that quote characters will be added to.</param>
258
        </member>
259
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.QuoteName(System.String,System.String)">
260
            <summary>Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server delimited identifier.</summary>
261
            <returns>The original string with the specified quote characters added.</returns>
262
            <param name="stringArg">The expression that quote characters will be added to.</param>
263
            <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>
264
        </member>
265
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Replicate(System.String,System.Nullable{System.Int32})">
266
            <summary>Repeats a string value a specified number of times.</summary>
267
            <returns>The target string, repeated the number of times specified by  count .</returns>
268
            <param name="target">A valid string.</param>
269
            <param name="count">The value that specifies how many time to repeat  target .</param>
270
        </member>
271
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.SoundCode(System.String)">
272
            <summary>Converts an alphanumeric string to a four-character (SOUNDEX) code to find similar-sounding words or names.</summary>
273
            <returns>The SOUNDEX code of the input string.</returns>
274
            <param name="arg">A valid string.</param>
275
        </member>
276
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Space(System.Nullable{System.Int32})">
277
            <summary>Returns a string of repeated spaces.</summary>
278
            <returns>A string that consists of the specified number of spaces.</returns>
279
            <param name="arg1">The number of spaces. If negative, a null string is returned.</param>
280
        </member>
281
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double})">
282
            <summary>Returns character data converted from numeric data.</summary>
283
            <returns>The numeric input expression converted to a string.</returns>
284
            <param name="number">A numeric expression.</param>
285
        </member>
286
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal})">
287
            <summary>Returns character data converted from numeric data.</summary>
288
            <returns>The input expression converted to a string.</returns>
289
            <param name="number">A numeric expression.</param>
290
        </member>
291
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double},System.Nullable{System.Int32})">
292
            <summary>Returns character data converted from numeric data.</summary>
293
            <returns>The numeric input expression converted to a string.</returns>
294
            <param name="number">A numeric expression.</param>
295
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
296
        </member>
297
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal},System.Nullable{System.Int32})">
298
            <summary>Returns character data converted from numeric data.</summary>
299
            <returns>The input expression converted to a string.</returns>
300
            <param name="number">A numeric expression.</param>
301
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
302
        </member>
303
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double},System.Nullable{System.Int32},System.Nullable{System.Int32})">
304
            <summary>Returns character data converted from numeric data.</summary>
305
            <returns>The numeric input expression converted to a string.</returns>
306
            <param name="number">A numeric expression.</param>
307
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
308
            <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>
309
        </member>
310
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal},System.Nullable{System.Int32},System.Nullable{System.Int32})">
311
            <summary>Returns character data converted from numeric data.</summary>
312
            <returns>The input expression converted to a string.</returns>
313
            <param name="number">A numeric expression.</param>
314
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
315
            <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>
316
        </member>
317
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Stuff(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.String)">
318
            <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>
319
            <returns>A string consisting of the two strings.</returns>
320
            <param name="stringInput">The target string.</param>
321
            <param name="start">The character position in  stringinput  where the replacement string is to be inserted.</param>
322
            <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>
323
            <param name="stringReplacement">The substring to be inserted into  stringInput .</param>
324
        </member>
325
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Unicode(System.String)">
326
            <summary>Returns the integer value, as defined by the Unicode standard, for the first character of the input expression.</summary>
327
            <returns>The character code for the first character in the input string.</returns>
328
            <param name="arg">A valid string.</param>
329
        </member>
330
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Acos(System.Nullable{System.Double})">
331
            <summary>A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.</summary>
332
            <returns>The angle, in radians, defined by the input cosine value.</returns>
333
            <param name="arg1">The cosine of an angle.</param>
334
        </member>
335
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Acos(System.Nullable{System.Decimal})">
336
            <summary>A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.</summary>
337
            <returns>An angle, measured in radians.</returns>
338
            <param name="arg1">The cosine of an angle.</param>
339
        </member>
340
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Asin(System.Nullable{System.Double})">
341
            <summary>A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.</summary>
342
            <returns>An angle, measured in radians.</returns>
343
            <param name="arg">The sine of an angle.</param>
344
        </member>
345
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Asin(System.Nullable{System.Decimal})">
346
            <summary>A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.</summary>
347
            <returns>An angle, measured in radians.</returns>
348
            <param name="arg">The sine of an angle.</param>
349
        </member>
350
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan(System.Nullable{System.Double})">
351
            <summary>A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.</summary>
352
            <returns>An angle, measured in radians.</returns>
353
            <param name="arg">The tangent of an angle.</param>
354
        </member>
355
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan(System.Nullable{System.Decimal})">
356
            <summary>A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.</summary>
357
            <returns>An angle, measured in radians.</returns>
358
            <param name="arg">The tangent of an angle.</param>
359
        </member>
360
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan2(System.Nullable{System.Double},System.Nullable{System.Double})">
361
            <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>
362
            <returns>An angle, measured in radians.</returns>
363
            <param name="arg1">The y-coordinate of a point.</param>
364
            <param name="arg2">The x-coordinate of a point.</param>
365
        </member>
366
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan2(System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
367
            <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>
368
            <returns>An angle, measured in radians.</returns>
369
            <param name="arg1">The y-coordinate of a point.</param>
370
            <param name="arg2">The x-coordinate of a point.</param>
371
        </member>
372
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cos(System.Nullable{System.Double})">
373
            <summary>Returns the trigonometric cosine of the specified angle, in radians, in the specified expression.</summary>
374
            <returns>The trigonometric cosine of the specified angle.</returns>
375
            <param name="arg">An angle, measured in radians.</param>
376
        </member>
377
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cos(System.Nullable{System.Decimal})">
378
            <summary>Returns the trigonometric cosine of the specified angle, in radians, in the specified expression.</summary>
379
            <returns>The trigonometric cosine of the specified angle.</returns>
380
            <param name="arg">An angle, measured in radians.</param>
381
        </member>
382
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cot(System.Nullable{System.Double})">
383
            <summary>A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.</summary>
384
            <returns>The trigonometric cotangent of the specified angle.</returns>
385
            <param name="arg">An angle, measured in radians.</param>
386
        </member>
387
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cot(System.Nullable{System.Decimal})">
388
            <summary>A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.</summary>
389
            <returns>The trigonometric cotangent of the specified angle.</returns>
390
            <param name="arg">An angle, measured in radians.</param>
391
        </member>
392
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Int32})">
393
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
394
            <returns>The specified angle converted to degrees.</returns>
395
            <param name="arg1">An angle, measured in radians.</param>
396
        </member>
397
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Int64})">
398
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
399
            <returns>The specified angle converted to degrees.</returns>
400
            <param name="arg1">An angle, measured in radians.</param>
401
        </member>
402
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Decimal})">
403
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
404
            <returns>The specified angle converted to degrees.</returns>
405
            <param name="arg1">An angle, measured in radians.</param>
406
        </member>
407
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Double})">
408
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
409
            <returns>The specified angle converted to degrees.</returns>
410
            <param name="arg1">An angle, measured in radians.</param>
411
        </member>
412
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Exp(System.Nullable{System.Double})">
413
            <summary>Returns the exponential value of the specified float expression.</summary>
414
            <returns>The constant e raised to the power of the input value.</returns>
415
            <param name="arg">The input value.</param>
416
        </member>
417
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Exp(System.Nullable{System.Decimal})">
418
            <summary>Returns the exponential value of the specified float expression.</summary>
419
            <returns>The constant e raised to the power of the input value.</returns>
420
            <param name="arg">The input value.</param>
421
        </member>
422
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log(System.Nullable{System.Double})">
423
            <summary>Returns the natural logarithm of the specified input value.</summary>
424
            <returns>The natural logarithm of the input value.</returns>
425
            <param name="arg">A numeric expression.</param>
426
        </member>
427
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log(System.Nullable{System.Decimal})">
428
            <summary>Returns the natural logarithm of the specified input value.</summary>
429
            <returns>The natural logarithm of the input value.</returns>
430
            <param name="arg">A numeric expression.</param>
431
        </member>
432
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log10(System.Nullable{System.Double})">
433
            <summary>Returns the base-10 logarithm of the specified input value.</summary>
434
            <returns>The base-10 logarithm of the input value.</returns>
435
            <param name="arg">A numeric expression.</param>
436
        </member>
437
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log10(System.Nullable{System.Decimal})">
438
            <summary>Returns the base-10 logarithm of the specified input value.</summary>
439
            <returns>The base-10 logarithm of the input value.</returns>
440
            <param name="arg">A numeric expression.</param>
441
        </member>
442
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Pi">
443
            <summary>Returns the constant value of pi.</summary>
444
            <returns>The numeric value of pi.</returns>
445
        </member>
446
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Int32})">
447
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
448
            <returns>The radian measure of the specified angle.</returns>
449
            <param name="arg">The angle, measured in degrees</param>
450
        </member>
451
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Int64})">
452
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
453
            <returns>The radian measure of the specified angle.</returns>
454
            <param name="arg">The angle, measured in degrees</param>
455
        </member>
456
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Decimal})">
457
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
458
            <returns>The radian measure of the specified angle.</returns>
459
            <param name="arg">The angle, measured in degrees.</param>
460
        </member>
461
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Double})">
462
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
463
            <returns>The radian measure of the specified angle.</returns>
464
            <param name="arg">The angle, measured in degrees.</param>
465
        </member>
466
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Rand">
467
            <summary>Returns a pseudo-random float value from 0 through 1, exclusive.</summary>
468
            <returns>The pseudo-random value.</returns>
469
        </member>
470
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Rand(System.Nullable{System.Int32})">
471
            <summary>Returns a pseudo-random float value from 0 through 1, exclusive.</summary>
472
            <returns>The pseudo-random value.</returns>
473
            <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>
474
        </member>
475
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Int32})">
476
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
477
            <returns>The sign of the input expression.</returns>
478
            <param name="arg">A numeric expression.</param>
479
        </member>
480
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Int64})">
481
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
482
            <returns>The sign of the input expression.</returns>
483
            <param name="arg">A numeric expression.</param>
484
        </member>
485
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Decimal})">
486
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
487
            <returns>The sign of the input expression.</returns>
488
            <param name="arg">A numeric expression.</param>
489
        </member>
490
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Double})">
491
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
492
            <returns>The sign of the input expression.</returns>
493
            <param name="arg">A numeric expression.</param>
494
        </member>
495
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sin(System.Nullable{System.Decimal})">
496
            <summary>Returns the trigonometric sine of the specified angle.</summary>
497
            <returns>The trigonometric sine of the input expression.</returns>
498
            <param name="arg">An angle, measured in radians.</param>
499
        </member>
500
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sin(System.Nullable{System.Double})">
501
            <summary>Returns the trigonometric sine of the specified angle.</summary>
502
            <returns>The trigonometric sine of the input expression.</returns>
503
            <param name="arg">An angle, measured in radians.</param>
504
        </member>
505
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.SquareRoot(System.Nullable{System.Double})">
506
            <summary>Returns the square root of the specified number.</summary>
507
            <returns>The square root of the input value.</returns>
508
            <param name="arg">A numeric expression.</param>
509
        </member>
510
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.SquareRoot(System.Nullable{System.Decimal})">
511
            <summary>Returns the square root of the specified number.</summary>
512
            <returns>The square root of the input value.</returns>
513
            <param name="arg">A numeric expression.</param>
514
        </member>
515
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Square(System.Nullable{System.Double})">
516
            <summary>Returns the square of the specified number.</summary>
517
            <returns>The square of the input value.</returns>
518
            <param name="arg1">A numeric expression.</param>
519
        </member>
520
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Square(System.Nullable{System.Decimal})">
521
            <summary>Returns the square of the specified number.</summary>
522
            <returns>The square of the input value.</returns>
523
            <param name="arg1">A numeric expression.</param>
524
        </member>
525
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Tan(System.Nullable{System.Double})">
526
            <summary>Returns the trigonometric tangent of the input expression.</summary>
527
            <returns>The tangent of the input angle.</returns>
528
            <param name="arg">An angle, measured in radians.</param>
529
        </member>
530
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Tan(System.Nullable{System.Decimal})">
531
            <summary>Returns the trigonometric tangent of the input expression.</summary>
532
            <returns>The tangent of the input angle.</returns>
533
            <param name="arg">An angle, measured in radians.</param>
534
        </member>
535
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.DateTime})">
536
            <summary>Returns a new datetime value based on adding an interval to the specified date.</summary>
537
            <returns>The new date.</returns>
538
            <param name="datePartArg">The part of the date to increment. </param>
539
            <param name="number">The value used to increment a date by a specified amount.</param>
540
            <param name="date">The date to increment.</param>
541
        </member>
542
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.TimeSpan})">
543
            <summary>Returns a new time span value based on adding an interval to the specified time span.</summary>
544
            <returns>The new time span.</returns>
545
            <param name="datePartArg">The part of the date to increment.</param>
546
            <param name="number">The value used to increment a date by a specified amount.</param>
547
            <param name="time">The time span to increment.</param>
548
        </member>
549
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.DateTimeOffset})">
550
            <summary>Returns a new date value based on adding an interval to the specified date.</summary>
551
            <returns>The new point in time, expressed as a date and time of day, relative to Coordinated Universal Time (UTC).</returns>
552
            <param name="datePartArg">The part of the date to increment.</param>
553
            <param name="number">The value used to increment a date by a specified amount.</param>
554
            <param name="dateTimeOffsetArg">The date to increment.</param>
555
        </member>
556
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.String)">
557
            <summary>Returns a new datetime value based on adding an interval to the specified date.</summary>
558
            <returns>
559
            A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" /> value that is the new date.
560
            </returns>
561
            <param name="datePartArg">The part of the date to increment.</param>
562
            <param name="number">The value used to increment a date by a specified amount.</param>
563
            <param name="date">The date to increment.</param>
564
        </member>
565
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
566
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
567
            <returns>The number of time intervals between the two dates.</returns>
568
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
569
            <param name="startDate">The first date.</param>
570
            <param name="endDate">The second date.</param>
571
        </member>
572
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
573
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
574
            <returns>The number of time intervals between the two dates.</returns>
575
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
576
            <param name="startDate">The first date.</param>
577
            <param name="endDate">The second date.</param>
578
        </member>
579
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
580
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
581
            <returns>The number of time intervals between the two dates.</returns>
582
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
583
            <param name="startDate">The first date.</param>
584
            <param name="endDate">The second date.</param>
585
        </member>
586
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.DateTime})">
587
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
588
            <returns>The number of time intervals between the two dates.</returns>
589
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
590
            <param name="startDate">The first date.</param>
591
            <param name="endDate">The second date.</param>
592
        </member>
593
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.DateTimeOffset})">
594
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
595
            <returns>The number of time intervals between the two dates.</returns>
596
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
597
            <param name="startDate">The first date.</param>
598
            <param name="endDate">The second date.</param>
599
        </member>
600
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.TimeSpan})">
601
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
602
            <returns>The value specifying the number of time intervals between the two dates.</returns>
603
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
604
            <param name="startDate">The first date.</param>
605
            <param name="endDate">The second date.</param>
606
        </member>
607
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.String)">
608
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
609
            <returns>The number of time intervals between the two dates.</returns>
610
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
611
            <param name="startDate">The first date.</param>
612
            <param name="endDate">The second date.</param>
613
        </member>
614
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.String)">
615
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
616
            <returns>The number of time intervals between the two dates.</returns>
617
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
618
            <param name="startDate">The first date.</param>
619
            <param name="endDate">The second date.</param>
620
        </member>
621
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.String)">
622
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
623
            <returns>The number of time intervals between the two dates.</returns>
624
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
625
            <param name="startDate">The first date.</param>
626
            <param name="endDate">The second date.</param>
627
        </member>
628
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.String)">
629
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
630
            <returns>The number of time intervals between the two dates.</returns>
631
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
632
            <param name="startDate">The first date.</param>
633
            <param name="endDate">The second date.</param>
634
        </member>
635
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.DateTime})">
636
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
637
            <returns>The number of time intervals between the two dates.</returns>
638
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
639
            <param name="startDate">The first date.</param>
640
            <param name="endDate">The second date.</param>
641
        </member>
642
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.DateTimeOffset})">
643
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
644
            <returns>The number of time intervals between the two dates.</returns>
645
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
646
            <param name="startDate">The first date.</param>
647
            <param name="endDate">The second date.</param>
648
        </member>
649
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.TimeSpan})">
650
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
651
            <returns>The number of time intervals between the two dates.</returns>
652
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
653
            <param name="startDate">The first date.</param>
654
            <param name="endDate">The second date.</param>
655
        </member>
656
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.TimeSpan})">
657
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
658
            <returns>The number of time intervals between the two Dates.</returns>
659
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
660
            <param name="startDate">The first date.</param>
661
            <param name="endDate">The second date.</param>
662
        </member>
663
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTimeOffset})">
664
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
665
            <returns>The number of time intervals between the two dates.</returns>
666
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
667
            <param name="startDate">The first date.</param>
668
            <param name="endDate">The second date.</param>
669
        </member>
670
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTime})">
671
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
672
            <returns>The number of time intervals between the two dates.</returns>
673
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
674
            <param name="startDate">The first date.</param>
675
            <param name="endDate">The second date.</param>
676
        </member>
677
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.DateTime})">
678
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
679
            <returns>The specified part of the specified date.</returns>
680
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
681
            <param name="date">The date.</param>
682
        </member>
683
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.String)">
684
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
685
            <returns>The specified part of the specified date.</returns>
686
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
687
            <param name="date">The date.</param>
688
        </member>
689
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.TimeSpan})">
690
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
691
            <returns>The specified part of the specified date.</returns>
692
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
693
            <param name="date">The date.</param>
694
        </member>
695
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.DateTimeOffset})">
696
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
697
            <returns>The specified part of the specified date.</returns>
698
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
699
            <param name="date">The date.</param>
700
        </member>
701
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.DateTime})">
702
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
703
            <returns>The the specified datepart of the specified date.</returns>
704
            <param name="datePartArg">The part of the date to return the value.</param>
705
            <param name="date">The date.</param>
706
        </member>
707
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.DateTimeOffset})">
708
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
709
            <returns>The specified datepart of the specified date.</returns>
710
            <param name="datePartArg">The part of the date to return the value.</param>
711
            <param name="date">The date.</param>
712
        </member>
713
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.String)">
714
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
715
            <returns>The specified datepart of the specified date.</returns>
716
            <param name="datePartArg">The part of the date to return the value.</param>
717
            <param name="date">The date.</param>
718
        </member>
719
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.TimeSpan})">
720
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
721
            <returns>The specified datepart of the specified date.</returns>
722
            <param name="datePartArg">The part of the date to return the value.</param>
723
            <param name="date">The date.</param>
724
        </member>
725
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.GetDate">
726
            <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>
727
            <returns>The current database timestamp.</returns>
728
        </member>
729
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.GetUtcDate">
730
            <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>
731
            <returns>The current database UTC timestamp.</returns>
732
        </member>
733
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Boolean})">
734
            <summary>Returns the number of bytes used to represent any expression.</summary>
735
            <returns>The number of bytes in the input value.</returns>
736
            <param name="arg">The value to be examined for data length.</param>
737
        </member>
738
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Double})">
739
            <summary>Returns the number of bytes used to represent any expression.</summary>
740
            <returns>The number of bytes in the input value.</returns>
741
            <param name="arg">The value to be examined for data length.</param>
742
        </member>
743
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Decimal})">
744
            <summary>Returns the number of bytes used to represent any expression.</summary>
745
            <returns>The number of bytes in the input value.</returns>
746
            <param name="arg">The value to be examined for data length.</param>
747
        </member>
748
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.DateTime})">
749
            <summary>Returns the number of bytes used to represent any expression.</summary>
750
            <returns>The number of bytes in the input value.</returns>
751
            <param name="arg">The value to be examined for data length.</param>
752
        </member>
753
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.TimeSpan})">
754
            <summary>Returns the number of bytes used to represent any expression.</summary>
755
            <returns>The number of bytes in the input value.</returns>
756
            <param name="arg">The value to be examined for data length.</param>
757
        </member>
758
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.DateTimeOffset})">
759
            <summary>Returns the number of bytes used to represent any expression.</summary>
760
            <returns>The number of bytes in the input value.</returns>
761
            <param name="arg">The value to be examined for data length.</param>
762
        </member>
763
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.String)">
764
            <summary>Returns the number of bytes used to represent any expression.</summary>
765
            <returns>The number of bytes in the input value.</returns>
766
            <param name="arg">The value to be examined for data length.</param>
767
        </member>
768
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Byte[])">
769
            <summary>Returns the number of bytes used to represent any expression.</summary>
770
            <returns>The number of bytes in the input value.</returns>
771
            <param name="arg">The value to be examined for length.</param>
772
        </member>
773
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Guid})">
774
            <summary>Returns the number of bytes used to represent any expression.</summary>
775
            <returns>The number of bytes in the input value.</returns>
776
            <param name="arg">The value to be examined for data length.</param>
777
        </member>
778
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean})">
779
            <summary>Returns the checksum value computed over the input argument.</summary>
780
            <returns>The checksum computed over the input value.</returns>
781
            <param name="arg1">The value for which the checksum is calculated.</param>
782
        </member>
783
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double})">
784
            <summary>Returns the checksum value computed over the input argument.</summary>
785
            <returns>The checksum computed over the input value.</returns>
786
            <param name="arg1">The value for which the checksum is calculated.</param>
787
        </member>
788
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal})">
789
            <summary>Returns the checksum value computed over the input argument.</summary>
790
            <returns>The checksum computed over the input value.</returns>
791
            <param name="arg1">The value for which the checksum is calculated.</param>
792
        </member>
793
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String)">
794
            <summary>Returns the checksum value computed over the input argument.</summary>
795
            <returns>The checksum computed over the input value.</returns>
796
            <param name="arg1">The value for which the checksum is calculated.</param>
797
        </member>
798
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime})">
799
            <summary>Returns the checksum value computed over the input argument.</summary>
800
            <returns>The checksum computed over the input values.</returns>
801
            <param name="arg1">The value for which the checksum is calculated.</param>
802
        </member>
803
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan})">
804
            <summary>Returns the checksum value computed over the input argument.</summary>
805
            <returns>The checksum computed over the input value.</returns>
806
            <param name="arg1">The value for which the checksum is calculated.</param>
807
        </member>
808
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset})">
809
            <summary>Returns the checksum value computed over the input argument.</summary>
810
            <returns>The checksum computed over the input value.</returns>
811
            <param name="arg1">The value for which the checksum is calculated.</param>
812
        </member>
813
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[])">
814
            <summary>Returns the checksum value computed over the input argument.</summary>
815
            <returns>The checksum computed over the input value.</returns>
816
            <param name="arg1">The character array for which the checksum is calculated.</param>
817
        </member>
818
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid})">
819
            <summary>Returns the checksum value computed over the input argument.</summary>
820
            <returns>The checksum computed over the input value.</returns>
821
            <param name="arg1">The value for which the checksum is calculated.</param>
822
        </member>
823
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
824
            <summary>Returns the checksum value computed over the input arguments.</summary>
825
            <returns>The checksum computed over the input values.</returns>
826
            <param name="arg1">The value for which the checksum is calculated.</param>
827
            <param name="arg2">The value for which the checksum is calculated.</param>
828
        </member>
829
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double},System.Nullable{System.Double})">
830
            <summary>Returns the checksum value computed over the input arguments.</summary>
831
            <returns>The checksum computed over the input values.</returns>
832
            <param name="arg1">The value for which the checksum is calculated.</param>
833
            <param name="arg2">The value for which the checksum is calculated.</param>
834
        </member>
835
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
836
            <summary>Returns the checksum value computed over the input arguments.</summary>
837
            <returns>The checksum computed over the input values.</returns>
838
            <param name="arg1">The value for which the checksum is calculated.</param>
839
            <param name="arg2">The value for which the checksum is calculated.</param>
840
        </member>
841
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String,System.String)">
842
            <summary>Returns the checksum value computed over the input arguments.</summary>
843
            <returns>The checksum computed over the input values.</returns>
844
            <param name="arg1">The value for which the checksum is calculated.</param>
845
            <param name="arg2">The value for which the checksum is calculated.</param>
846
        </member>
847
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
848
            <summary>Returns the checksum value computed over the input arguments.</summary>
849
            <returns>The checksum computed over the input values.</returns>
850
            <param name="arg1">The value for which the checksum is calculated.</param>
851
            <param name="arg2">The value for which the checksum is calculated.</param>
852
        </member>
853
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
854
            <summary>Returns the checksum value computed over the input arguments.</summary>
855
            <returns>The checksum computed over the input values.</returns>
856
            <param name="arg1">The value for which the checksum is calculated.</param>
857
            <param name="arg2">The value for which the checksum is calculated.</param>
858
        </member>
859
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
860
            <summary>Returns the checksum value computed over the input arguments.</summary>
861
            <returns>The checksum computed over the input values.</returns>
862
            <param name="arg1">The value for which the checksum is calculated.</param>
863
            <param name="arg2">The value for which the checksum is calculated.</param>
864
        </member>
865
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[],System.Byte[])">
866
            <summary>Returns the checksum value computed over the input arguments.</summary>
867
            <returns>The checksum computed over the input values.</returns>
868
            <param name="arg1">The character array for which the checksum is calculated.</param>
869
            <param name="arg2">The character array for which the checksum is calculated.</param>
870
        </member>
871
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid},System.Nullable{System.Guid})">
872
            <summary>Returns the checksum value computed over the input arguments.</summary>
873
            <returns>The checksum computed over the input values.</returns>
874
            <param name="arg1">The value for which the checksum is calculated.</param>
875
            <param name="arg2">The value for which the checksum is calculated.</param>
876
        </member>
877
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
878
            <summary>Returns the checksum value computed over the input arguments.</summary>
879
            <returns>The checksum computed over the input values.</returns>
880
            <param name="arg1">The value for which the checksum is calculated.</param>
881
            <param name="arg2">The value for which the checksum is calculated.</param>
882
            <param name="arg3">The value for which the checksum is calculated.</param>
883
        </member>
884
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Double})">
885
            <summary>Returns the checksum value computed over the input arguments.</summary>
886
            <returns>The checksum computed over the input values.</returns>
887
            <param name="arg1">The value for which the checksum is calculated.</param>
888
            <param name="arg2">The value for which the checksum is calculated.</param>
889
            <param name="arg3">The value for which the checksum is calculated.</param>
890
        </member>
891
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal},System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
892
            <summary>Returns the checksum value computed over the input arguments.</summary>
893
            <returns>The checksum computed over the input values.</returns>
894
            <param name="arg1">The value for which the checksum is calculated.</param>
895
            <param name="arg2">The value for which the checksum is calculated.</param>
896
            <param name="arg3">The value for which the checksum is calculated.</param>
897
        </member>
898
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String,System.String,System.String)">
899
            <summary>Returns the checksum value computed over the input arguments.</summary>
900
            <returns>The checksum computed over the input values.</returns>
901
            <param name="arg1">The value for which the checksum is calculated.</param>
902
            <param name="arg2">The value for which the checksum is calculated.</param>
903
            <param name="arg3">The value for which the checksum is calculated.</param>
904
        </member>
905
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
906
            <summary>Returns the checksum value computed over the input arguments.</summary>
907
            <returns>The checksum computed over the input values.</returns>
908
            <param name="arg1">The value for which the checksum is calculated.</param>
909
            <param name="arg2">The value for which the checksum is calculated.</param>
910
            <param name="arg3">The value for which the checksum is calculated.</param>
911
        </member>
912
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
913
            <summary>Returns the checksum value computed over the input arguments.</summary>
914
            <returns>The checksum computed over the input values.</returns>
915
            <param name="arg1">The value for which the checksum is calculated.</param>
916
            <param name="arg2">The value for which the checksum is calculated.</param>
917
            <param name="arg3">The value for which the checksum is calculated.</param>
918
        </member>
919
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
920
            <summary>Returns the checksum value computed over the input arguments.</summary>
921
            <returns>The checksum computed over the input values.</returns>
922
            <param name="arg1">The value for which the checksum is calculated.</param>
923
            <param name="arg2">The value for which the checksum is calculated.</param>
924
            <param name="arg3">The value for which the checksum is calculated.</param>
925
        </member>
926
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[],System.Byte[],System.Byte[])">
927
            <summary>Returns the checksum value computed over the input arguments.</summary>
928
            <returns>The checksum computed over the input values.</returns>
929
            <param name="arg1">The character array for which the checksum is calculated.</param>
930
            <param name="arg2">The character array for which the checksum is calculated.</param>
931
            <param name="arg3">The character array for which the checksum is calculated.</param>
932
        </member>
933
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid})">
934
            <summary>Returns the checksum value computed over the input arguments.</summary>
935
            <returns>The checksum computed over the input values.</returns>
936
            <param name="arg1">The value for which the checksum is calculated.</param>
937
            <param name="arg2">The value for which the checksum is calculated.</param>
938
            <param name="arg3">The value for which the checksum is calculated.</param>
939
        </member>
940
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CurrentTimestamp">
941
            <summary>Returns the current date and time. </summary>
942
            <returns>The current date and time.</returns>
943
        </member>
944
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CurrentUser">
945
            <summary>Returns the name of the current user.</summary>
946
            <returns>The name of the current user.</returns>
947
        </member>
948
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.HostName">
949
            <summary>Returns the workstation name.</summary>
950
            <returns>The name of the workstation.</returns>
951
        </member>
952
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.UserName(System.Nullable{System.Int32})">
953
            <summary>Returns a database user name corresponding to a specified identification number.</summary>
954
            <returns>The user name.</returns>
955
            <param name="arg">A user ID.</param>
956
        </member>
957
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.UserName">
958
            <summary>Returns a database user name corresponding to a specified identification number.</summary>
959
            <returns>The user name.</returns>
960
        </member>
961
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.IsNumeric(System.String)">
962
            <summary>Indicates whether the input value is a valid numeric type.</summary>
963
            <returns>1 if the input expression is a valid numeric data type; otherwise, 0.</returns>
964
            <param name="arg">A string expression.</param>
965
        </member>
966
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.IsDate(System.String)">
967
            <summary>Indicates whether the input value is a valid date or time.</summary>
968
            <returns>1 if the input expression is a valid date or time value of datetime or smalldatetime data types; otherwise, 0.</returns>
969
            <param name="arg">The tested value.</param>
970
        </member>
971
        <member name="T:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator">
972
            <summary>
973
            Provider to convert provider agnostic migration operations into SQL commands
974
            that can be run against a Microsoft SQL Server database.
975
            </summary>
976
        </member>
977
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.IsPermissionDeniedError(System.Exception)">
978
            <summary>
979
            Determines if a provider specific exception corresponds to a database-level permission denied error.
980
            </summary>
981
            <param name="exception">The database exception.</param>
982
            <returns> true if the supplied exception corresponds to a database-level permission denied error; otherwise false. </returns>
983
        </member>
984
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Collections.Generic.IEnumerable{System.Data.Entity.Migrations.Model.MigrationOperation},System.String)">
985
            <summary>
986
            Converts a set of migration operations into Microsoft SQL Server specific SQL.
987
            </summary>
988
            <param name="migrationOperations"> The operations to be converted. </param>
989
            <param name="providerManifestToken"> Token representing the version of SQL Server being targeted (i.e. "2005", "2008"). </param>
990
            <returns> A list of SQL statements to be executed to perform the migration operations. </returns>
991
        </member>
992
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateProcedureBody(System.Collections.Generic.ICollection{System.Data.Entity.Core.Common.CommandTrees.DbModificationCommandTree},System.String,System.String)">
993
            <summary>
994
            Generates the SQL body for a stored procedure.
995
            </summary>
996
            <param name="commandTrees">The command trees representing the commands for an insert, update or delete operation.</param>
997
            <param name="rowsAffectedParameter">The rows affected parameter name.</param>
998
            <param name="providerManifestToken">The provider manifest token.</param>
999
            <returns>The SQL body for the stored procedure.</returns>
1000
        </member>
1001
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.UpdateDatabaseOperation)">
1002
            <summary>
1003
            Generates the specified update database operation which represents applying a series of migrations.
1004
            The generated script is idempotent, meaning it contains conditional logic to check if individual migrations 
1005
            have already been applied and only apply the pending ones.
1006
            </summary>
1007
            <param name="updateDatabaseOperation">The update database operation.</param>
1008
        </member>
1009
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.MigrationOperation)">
1010
            <summary>
1011
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.MigrationOperation"/>.
1012
            Allows derived providers to handle additional operation types.
1013
            Generated SQL should be added using the Statement method.
1014
            </summary>
1015
            <param name="migrationOperation"> The operation to produce SQL for. </param>
1016
        </member>
1017
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.CreateConnection">
1018
            <summary>
1019
            Creates an empty connection for the current provider.
1020
            Allows derived providers to use connection other than <see cref="T:System.Data.SqlClient.SqlConnection"/>.
1021
            </summary>
1022
            <returns> An empty connection for the current provider. </returns>
1023
        </member>
1024
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.CreateProcedureOperation)">
1025
            <summary>
1026
            Generates the specified create procedure operation.
1027
            </summary>
1028
            <param name="createProcedureOperation">The create procedure operation.</param>
1029
        </member>
1030
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AlterProcedureOperation)">
1031
            <summary>
1032
            Generates the specified alter procedure operation.
1033
            </summary>
1034
            <param name="alterProcedureOperation">The alter procedure operation.</param>
1035
        </member>
1036
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropProcedureOperation)">
1037
            <summary>
1038
            Generates the specified drop procedure operation.
1039
            </summary>
1040
            <param name="dropProcedureOperation">The drop procedure operation.</param>
1041
        </member>
1042
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.CreateTableOperation)">
1043
            <summary>
1044
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.CreateTableOperation"/>. This method differs from
1045
            <see cref="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.WriteCreateTable(System.Data.Entity.Migrations.Model.CreateTableOperation)"/> in that it will
1046
            create the target database schema if it does not already exist.
1047
            Generated SQL should be added using the Statement method.
1048
            </summary>
1049
            <param name="createTableOperation"> The operation to produce SQL for. </param>
1050
        </member>
1051
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.WriteCreateTable(System.Data.Entity.Migrations.Model.CreateTableOperation)">
1052
            <summary>
1053
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.CreateTableOperation"/>.
1054
            Generated SQL should be added using the Statement method.
1055
            </summary>
1056
            <param name="createTableOperation"> The operation to produce SQL for. </param>
1057
        </member>
1058
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.WriteCreateTable(System.Data.Entity.Migrations.Model.CreateTableOperation,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1059
            <summary>
1060
            Writes CREATE TABLE SQL to the target writer.
1061
            </summary>
1062
            <param name="createTableOperation"> The operation to produce SQL for. </param>
1063
            <param name="writer"> The target writer. </param>
1064
        </member>
1065
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AlterTableOperation)">
1066
            <summary>
1067
            Override this method to generate SQL when the definition of a table or its attributes are changed.
1068
            The default implementation of this method does nothing.
1069
            </summary>
1070
            <param name="alterTableOperation"> The operation describing changes to the table. </param>
1071
        </member>
1072
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateMakeSystemTable(System.Data.Entity.Migrations.Model.CreateTableOperation,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1073
            <summary>
1074
            Generates SQL to mark a table as a system table.
1075
            Generated SQL should be added using the Statement method.
1076
            </summary>
1077
            <param name="createTableOperation"> The table to mark as a system table. </param>
1078
            <param name="writer"> The <see cref="T:System.Data.Entity.Migrations.Utilities.IndentedTextWriter"/> to write the generated SQL to. </param>
1079
        </member>
1080
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateCreateSchema(System.String)">
1081
            <summary>
1082
            Generates SQL to create a database schema.
1083
            Generated SQL should be added using the Statement method.
1084
            </summary>
1085
            <param name="schema"> The name of the schema to create. </param>
1086
        </member>
1087
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AddForeignKeyOperation)">
1088
            <summary>
1089
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AddForeignKeyOperation"/>.
1090
            Generated SQL should be added using the Statement method.
1091
            </summary>
1092
            <param name="addForeignKeyOperation"> The operation to produce SQL for. </param>
1093
        </member>
1094
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropForeignKeyOperation)">
1095
            <summary>
1096
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropForeignKeyOperation"/>.
1097
            Generated SQL should be added using the Statement method.
1098
            </summary>
1099
            <param name="dropForeignKeyOperation"> The operation to produce SQL for. </param>
1100
        </member>
1101
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.CreateIndexOperation)">
1102
            <summary>
1103
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.CreateIndexOperation"/>.
1104
            Generated SQL should be added using the Statement method.
1105
            </summary>
1106
            <param name="createIndexOperation"> The operation to produce SQL for. </param>
1107
        </member>
1108
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropIndexOperation)">
1109
            <summary>
1110
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropIndexOperation"/>.
1111
            Generated SQL should be added using the Statement method.
1112
            </summary>
1113
            <param name="dropIndexOperation"> The operation to produce SQL for. </param>
1114
        </member>
1115
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AddPrimaryKeyOperation)">
1116
            <summary>
1117
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AddPrimaryKeyOperation"/>.
1118
            Generated SQL should be added using the Statement method.
1119
            </summary>
1120
            <param name="addPrimaryKeyOperation"> The operation to produce SQL for. </param>
1121
        </member>
1122
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropPrimaryKeyOperation)">
1123
            <summary>
1124
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropPrimaryKeyOperation"/>.
1125
            Generated SQL should be added using the Statement method.
1126
            </summary>
1127
            <param name="dropPrimaryKeyOperation"> The operation to produce SQL for. </param>
1128
        </member>
1129
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AddColumnOperation)">
1130
            <summary>
1131
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AddColumnOperation"/>.
1132
            Generated SQL should be added using the Statement method.
1133
            </summary>
1134
            <param name="addColumnOperation"> The operation to produce SQL for. </param>
1135
        </member>
1136
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropColumnOperation)">
1137
            <summary>
1138
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropColumnOperation"/>.
1139
            Generated SQL should be added using the Statement method.
1140
            </summary>
1141
            <param name="dropColumnOperation"> The operation to produce SQL for. </param>
1142
        </member>
1143
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AlterColumnOperation)">
1144
            <summary>
1145
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AlterColumnOperation"/>.
1146
            Generated SQL should be added using the Statement method.
1147
            </summary>
1148
            <param name="alterColumnOperation"> The operation to produce SQL for. </param>
1149
        </member>
1150
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.DropDefaultConstraint(System.String,System.String,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1151
            <summary>
1152
            Call this method to generate SQL that will attempt to drop the default constraint created
1153
            when a column is created. This method is usually called by code that overrides the creation or
1154
            altering of columns.
1155
            </summary>
1156
            <param name="table">The table to which the constraint applies.</param>
1157
            <param name="column">The column to which the constraint applies.</param>
1158
            <param name="writer">The writer to which generated SQL should be written.</param>
1159
        </member>
1160
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropTableOperation)">
1161
            <summary>
1162
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropTableOperation"/>.
1163
            Generated SQL should be added using the Statement method.
1164
            </summary>
1165
            <param name="dropTableOperation"> The operation to produce SQL for. </param>
1166
        </member>
1167
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.SqlOperation)">
1168
            <summary>
1169
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.SqlOperation"/>.
1170
            Generated SQL should be added using the Statement or StatementBatch methods.
1171
            </summary>
1172
            <param name="sqlOperation"> The operation to produce SQL for. </param>
1173
        </member>
1174
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameColumnOperation)">
1175
            <summary>
1176
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.RenameColumnOperation"/>.
1177
            Generated SQL should be added using the Statement method.
1178
            </summary>
1179
            <param name="renameColumnOperation"> The operation to produce SQL for. </param>
1180
        </member>
1181
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameIndexOperation)">
1182
            <summary>
1183
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.RenameIndexOperation"/>.
1184
            Generated SQL should be added using the Statement method.
1185
            </summary>
1186
            <param name="renameIndexOperation"> The operation to produce SQL for. </param>
1187
        </member>
1188
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameTableOperation)">
1189
            <summary>
1190
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.RenameTableOperation"/>.
1191
            Generated SQL should be added using the Statement method.
1192
            </summary>
1193
            <param name="renameTableOperation"> The operation to produce SQL for. </param>
1194
        </member>
1195
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameProcedureOperation)">
1196
            <summary>
1197
            Generates the specified rename procedure operation.
1198
            </summary>
1199
            <param name="renameProcedureOperation">The rename procedure operation.</param>
1200
        </member>
1201
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.MoveProcedureOperation)">
1202
            <summary>
1203
            Generates the specified move procedure operation.
1204
            </summary>
1205
            <param name="moveProcedureOperation">The move procedure operation.</param>
1206
        </member>
1207
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.MoveTableOperation)">
1208
            <summary>
1209
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.MoveTableOperation"/>.
1210
            Generated SQL should be added using the Statement method.
1211
            </summary>
1212
            <param name="moveTableOperation"> The operation to produce SQL for. </param>
1213
        </member>
1214
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.ColumnModel,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1215
            <summary>
1216
            Generates SQL for the given column model. This method is called by other methods that
1217
            process columns and can be overridden to change the SQL generated.
1218
            </summary>
1219
            <param name="column">The column for which SQL is being generated.</param>
1220
            <param name="writer">The writer to which generated SQL should be written.</param>
1221
        </member>
1222
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.HistoryOperation)">
1223
            <summary>
1224
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.HistoryOperation"/>.
1225
            Generated SQL should be added using the Statement method.
1226
            </summary>
1227
            <param name="historyOperation"> The operation to produce SQL for. </param>
1228
        </member>
1229
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Byte[])">
1230
            <summary>
1231
            Generates SQL to specify a constant byte[] default value being set on a column.
1232
            This method just generates the actual value, not the SQL to set the default value.
1233
            </summary>
1234
            <param name="defaultValue"> The value to be set. </param>
1235
            <returns> SQL representing the default value. </returns>
1236
        </member>
1237
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Boolean)">
1238
            <summary>
1239
            Generates SQL to specify a constant bool default value being set on a column.
1240
            This method just generates the actual value, not the SQL to set the default value.
1241
            </summary>
1242
            <param name="defaultValue"> The value to be set. </param>
1243
            <returns> SQL representing the default value. </returns>
1244
        </member>
1245
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.DateTime)">
1246
            <summary>
1247
            Generates SQL to specify a constant DateTime default value being set on a column.
1248
            This method just generates the actual value, not the SQL to set the default value.
1249
            </summary>
1250
            <param name="defaultValue"> The value to be set. </param>
1251
            <returns> SQL representing the default value. </returns>
1252
        </member>
1253
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.DateTimeOffset)">
1254
            <summary>
1255
            Generates SQL to specify a constant DateTimeOffset default value being set on a column.
1256
            This method just generates the actual value, not the SQL to set the default value.
1257
            </summary>
1258
            <param name="defaultValue"> The value to be set. </param>
1259
            <returns> SQL representing the default value. </returns>
1260
        </member>
1261
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Guid)">
1262
            <summary>
1263
            Generates SQL to specify a constant Guid default value being set on a column.
1264
            This method just generates the actual value, not the SQL to set the default value.
1265
            </summary>
1266
            <param name="defaultValue"> The value to be set. </param>
1267
            <returns> SQL representing the default value. </returns>
1268
        </member>
1269
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.String)">
1270
            <summary>
1271
            Generates SQL to specify a constant string default value being set on a column.
1272
            This method just generates the actual value, not the SQL to set the default value.
1273
            </summary>
1274
            <param name="defaultValue"> The value to be set. </param>
1275
            <returns> SQL representing the default value. </returns>
1276
        </member>
1277
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.TimeSpan)">
1278
            <summary>
1279
            Generates SQL to specify a constant TimeSpan default value being set on a column.
1280
            This method just generates the actual value, not the SQL to set the default value.
1281
            </summary>
1282
            <param name="defaultValue"> The value to be set. </param>
1283
            <returns> SQL representing the default value. </returns>
1284
        </member>
1285
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Spatial.DbGeography)">
1286
            <summary>
1287
            Generates SQL to specify a constant geogrpahy default value being set on a column.
1288
            This method just generates the actual value, not the SQL to set the default value.
1289
            </summary>
1290
            <param name="defaultValue"> The value to be set. </param>
1291
            <returns> SQL representing the default value. </returns>
1292
        </member>
1293
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Spatial.DbGeometry)">
1294
            <summary>
1295
            Generates SQL to specify a constant geometry default value being set on a column.
1296
            This method just generates the actual value, not the SQL to set the default value.
1297
            </summary>
1298
            <param name="defaultValue"> The value to be set. </param>
1299
            <returns> SQL representing the default value. </returns>
1300
        </member>
1301
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Object)">
1302
            <summary>
1303
            Generates SQL to specify a constant default value being set on a column.
1304
            This method just generates the actual value, not the SQL to set the default value.
1305
            </summary>
1306
            <param name="defaultValue"> The value to be set. </param>
1307
            <returns> SQL representing the default value. </returns>
1308
        </member>
1309
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.BuildColumnType(System.Data.Entity.Migrations.Model.ColumnModel)">
1310
            <summary>
1311
            Generates SQL to specify the data type of a column.
1312
            This method just generates the actual type, not the SQL to create the column.
1313
            </summary>
1314
            <param name="columnModel"> The definition of the column. </param>
1315
            <returns> SQL representing the data type. </returns>
1316
        </member>
1317
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Name(System.String)">
1318
            <summary>
1319
            Generates a quoted name. The supplied name may or may not contain the schema.
1320
            </summary>
1321
            <param name="name"> The name to be quoted. </param>
1322
            <returns> The quoted name. </returns>
1323
        </member>
1324
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Quote(System.String)">
1325
            <summary>
1326
            Quotes an identifier for SQL Server.
1327
            </summary>
1328
            <param name="identifier"> The identifier to be quoted. </param>
1329
            <returns> The quoted identifier. </returns>
1330
        </member>
1331
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Statement(System.String,System.Boolean,System.String)">
1332
            <summary>
1333
            Adds a new Statement to be executed against the database.
1334
            </summary>
1335
            <param name="sql"> The statement to be executed. </param>
1336
            <param name="suppressTransaction"> Gets or sets a value indicating whether this statement should be performed outside of the transaction scope that is used to make the migration process transactional. If set to true, this operation will not be rolled back if the migration process fails. </param>
1337
            <param name="batchTerminator">The batch terminator for the database provider.</param>
1338
        </member>
1339
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Writer">
1340
            <summary>
1341
            Gets a new <see cref="T:System.Data.Entity.Migrations.Utilities.IndentedTextWriter"/> that can be used to build SQL.
1342
            This is just a helper method to create a writer. Writing to the writer will
1343
            not cause SQL to be registered for execution. You must pass the generated
1344
            SQL to the Statement method.
1345
            </summary>
1346
            <returns> An empty text writer to use for SQL generation. </returns>
1347
        </member>
1348
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Statement(System.Data.Entity.Migrations.Utilities.IndentedTextWriter,System.String)">
1349
            <summary>
1350
            Adds a new Statement to be executed against the database.
1351
            </summary>
1352
            <param name="writer"> The writer containing the SQL to be executed. </param>
1353
            <param name="batchTerminator">The batch terminator for the database provider.</param>
1354
        </member>
1355
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.StatementBatch(System.String,System.Boolean)">
1356
            <summary>
1357
            Breaks sql string into one or more statements, handling T-SQL utility statements as necessary.
1358
            </summary>
1359
            <param name="sqlBatch"> The SQL to split into one ore more statements to be executed. </param>
1360
            <param name="suppressTransaction"> Gets or sets a value indicating whether this statement should be performed outside of the transaction scope that is used to make the migration process transactional. If set to true, this operation will not be rolled back if the migration process fails. </param>
1361
        </member>
1362
        <member name="P:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GuidColumnDefault">
1363
            <summary>
1364
            Returns the column default value to use for store-generated GUID columns when
1365
            no default value is explicitly specified in the migration.
1366
            Returns newsequentialid() for on-premises SQL Server 2005 and later.
1367
            Returns newid() for SQL Azure.
1368
            </summary>
1369
            <value>Either newsequentialid() or newid() as described above.</value>
1370
        </member>
1371
        <member name="T:System.Data.Entity.SqlServer.SqlSpatialFunctions">
1372
            <summary>
1373
            Contains function stubs that expose SqlServer methods in Linq to Entities.
1374
            </summary>
1375
        </member>
1376
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.PointGeography(System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Int32})">
1377
            <summary>Constructs a geography instance representing a Point instance from its x and y values and a spatial reference ID (SRID). </summary>
1378
            <returns>The constructed geography instance.</returns>
1379
            <param name="latitude">The x-coordinate of the Point being generated.</param>
1380
            <param name="longitude">The y-coordinate of the Point being generated</param>
1381
            <param name="spatialReferenceId">The SRID of the geography instance.</param>
1382
        </member>
1383
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.AsTextZM(System.Data.Entity.Spatial.DbGeography)">
1384
            <summary>Returns the Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation of a geography instance augmented with any Z (elevation) and M (measure) values carried by the instance.</summary>
1385
            <returns>The Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation of a geography instance.</returns>
1386
            <param name="geographyValue">The geography value.</param>
1387
        </member>
1388
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.BufferWithTolerance(System.Data.Entity.Spatial.DbGeography,System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Boolean})">
1389
            <summary>Returns a geometric object representing the union of all point values whose distance from a geography instance is less than or equal to a specified value, allowing for a specified tolerance.</summary>
1390
            <returns>The union of all point values whose distance from a geography instance is less than or equal to a specified value</returns>
1391
            <param name="geographyValue">The geography value.</param>
1392
            <param name="distance">The distance.</param>
1393
            <param name="tolerance">The specified tolerance.</param>
1394
            <param name="relative">Specifying whether the tolerance value is relative or absolute.</param>
1395
        </member>
1396
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.EnvelopeAngle(System.Data.Entity.Spatial.DbGeography)">
1397
            <summary>Returns the maximum angle between the point returned by EnvelopeCenter() and a point in the geography instance in degrees.</summary>
1398
            <returns>the maximum angle between the point returned by EnvelopeCenter().</returns>
1399
            <param name="geographyValue">The geography value.</param>
1400
        </member>
1401
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.EnvelopeCenter(System.Data.Entity.Spatial.DbGeography)">
1402
            <summary>Returns a point that can be used as the center of a bounding circle for the geography instance.</summary>
1403
            <returns>A SqlGeography value that specifies the location of the center of a bounding circle.</returns>
1404
            <param name="geographyValue">The geography value.</param>
1405
        </member>
1406
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.Filter(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
1407
            <summary>Offers a fast, index-only intersection method to determine if a geography instance intersects another SqlGeography instance, assuming an index is available.</summary>
1408
            <returns>True if a geography instance potentially intersects another SqlGeography instance; otherwise, false.</returns>
1409
            <param name="geographyValue">The geography value.</param>
1410
            <param name="geographyOther">Another geography instance to compare against the instance on which Filter is invoked.</param>
1411
        </member>
1412
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.InstanceOf(System.Data.Entity.Spatial.DbGeography,System.String)">
1413
            <summary>Tests if the SqlGeography instance is the same as the specified type.</summary>
1414
            <returns>A string that specifies one of the 12 types exposed in the geography type hierarchy.</returns>
1415
            <param name="geographyValue">The geography value.</param>
1416
            <param name="geometryTypeName">A string that specifies one of the 12 types exposed in the geography type hierarchy.</param>
1417
        </member>
1418
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.NumRings(System.Data.Entity.Spatial.DbGeography)">
1419
            <summary>Returns the total number of rings in a Polygon instance.</summary>
1420
            <returns>The total number of rings.</returns>
1421
            <param name="geographyValue">The geography value.</param>
1422
        </member>
1423
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.Reduce(System.Data.Entity.Spatial.DbGeography,System.Nullable{System.Double})">
1424
            <summary>Returns an approximation of the given geography instance produced by running the Douglas-Peucker algorithm on the instance with the given tolerance.</summary>
1425
            <returns>
1426
            Returns <see cref="T:System.Data.Entity.Spatial.DbGeography" />.
1427
            </returns>
1428
            <param name="geographyValue">The geography value.</param>
1429
            <param name="tolerance">The tolerance to input to the Douglas-Peucker algorithm. tolerance must be a positive number.</param>
1430
        </member>
1431
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.RingN(System.Data.Entity.Spatial.DbGeography,System.Nullable{System.Int32})">
1432
            <summary>Returns the specified ring of the SqlGeography instance: 1 ≤ n ≤ NumRings().</summary>
1433
            <returns>A SqlGeography object that represents the ring specified by n.</returns>
1434
            <param name="geographyValue">The geography value.</param>
1435
            <param name="index">An int expression between 1 and the number of rings in a polygon instance.</param>
1436
        </member>
1437
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.PointGeometry(System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Int32})">
1438
            <summary>Constructs a geometry instance representing a Point instance from its x and y values and a spatial reference ID (SRID). </summary>
1439
            <returns>The constructed geometry instance.</returns>
1440
            <param name="xCoordinate">The x-coordinate of the Point being generated.</param>
1441
            <param name="yCoordinate">The y-coordinate of the Point being generated</param>
1442
            <param name="spatialReferenceId">The SRID of the geography instance.</param>
1443
        </member>
1444
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.AsTextZM(System.Data.Entity.Spatial.DbGeometry)">
1445
            <summary>Returns the Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation of a geography instance augmented with any Z (elevation) and M (measure) values carried by the instance.</summary>
1446
            <returns>The Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation of a geometry instance.</returns>
1447
            <param name="geometryValue">The geometry value.</param>
1448
        </member>
1449
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.BufferWithTolerance(System.Data.Entity.Spatial.DbGeometry,System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Boolean})">
1450
            <summary>Returns a geometric object representing the union of all point values whose distance from a geometry instance is less than or equal to a specified value, allowing for a specified tolerance.</summary>
1451
            <returns>The union of all point values whose distance from a geometry instance is less than or equal to a specified value</returns>
1452
            <param name="geometryValue">The geometry value.</param>
1453
            <param name="distance">The distance.</param>
1454
            <param name="tolerance">The specified tolerance.</param>
1455
            <param name="relative">Specifying whether the tolerance value is relative or absolute.</param>
1456
        </member>
1457
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.InstanceOf(System.Data.Entity.Spatial.DbGeometry,System.String)">
1458
            <summary>Tests if the SqlGeometry instance is the same as the specified type.</summary>
1459
            <returns>A string that specifies one of the 12 types exposed in the geography type hierarchy.</returns>
1460
            <param name="geometryValue">The geometry value.</param>
1461
            <param name="geometryTypeName">A string that specifies one of the 12 types exposed in the geography type hierarchy.</param>
1462
        </member>
1463
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.Filter(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
1464
            <summary>Offers a fast, index-only intersection method to determine if a geography instance intersects another SqlGeometry instance, assuming an index is available.</summary>
1465
            <returns>True if a geography instance potentially intersects another SqlGeography instance; otherwise, false.</returns>
1466
            <param name="geometryValue">The geometry value.</param>
1467
            <param name="geometryOther">Another geography instance to compare against the instance on which Filter is invoked.</param>
1468
        </member>
1469
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.MakeValid(System.Data.Entity.Spatial.DbGeometry)">
1470
            <summary>Converts an invalid geometry instance into a geometry instance with a valid Open Geospatial Consortium (OGC) type. </summary>
1471
            <returns>The converted geometry instance.</returns>
1472
            <param name="geometryValue">The geometry value.</param>
1473
        </member>
1474
        <member name="M:System.Data.Entity.SqlServer.SqlSpatialFunctions.Reduce(System.Data.Entity.Spatial.DbGeometry,System.Nullable{System.Double})">
1475
            <summary>Returns an approximation of the given geography instance produced by running the Douglas-Peucker algorithm on the instance with the given tolerance.</summary>
1476
            <returns>
1477
            Returns <see cref="T:System.Data.Entity.Spatial.DbGeometry" />.
1478
            </returns>
1479
            <param name="geometryValue">The geometry value.</param>
1480
            <param name="tolerance">The tolerance to input to the Douglas-Peucker algorithm. tolerance must be a positive number.</param>
1481
        </member>
1482
        <member name="M:System.Data.Entity.SqlServer.SqlProviderManifest.SupportsParameterOptimizationInSchemaQueries">
1483
            <summary>
1484
            Indicates if the provider supports the parameter optimization described in EntityFramework6 GitHub issue #195.
1485
            </summary>
1486
            <returns><c>True</c> since this provider supports the parameter optimization.</returns>
1487
        </member>
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)