프로젝트

일반

사용자정보

개정판 be7b18b6

IDbe7b18b66e40c21be57e678d20c77ee3a4c36cb9
상위 7c549195
하위 5c6aea78

semi 이(가) 4년 이상 전에 추가함

Debug 와 Debug_HS

Change-Id: I6d05505bdaf7bc3345d0c32b7d43aedce75e5d71

차이점 보기:

ConvertService/ServiceController/Markus.Mvvm.ToolKit/Markus.Mvvm.ToolKit.csproj
30 30
    <DefineConstants>TRACE;DEBUG</DefineConstants>
31 31
    <ErrorReport>prompt</ErrorReport>
32 32
    <WarningLevel>4</WarningLevel>
33
    <PlatformTarget>x64</PlatformTarget>
33
    <PlatformTarget>AnyCPU</PlatformTarget>
34 34
  </PropertyGroup>
35 35
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36 36
    <DebugType>pdbonly</DebugType>
ConvertService/ServiceController/Markus.Service.StationController/Markus.Service.StationController.csproj
38 38
    <BootstrapperEnabled>true</BootstrapperEnabled>
39 39
  </PropertyGroup>
40 40
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
41
    <PlatformTarget>x64</PlatformTarget>
41
    <PlatformTarget>AnyCPU</PlatformTarget>
42 42
    <DebugSymbols>true</DebugSymbols>
43 43
    <DebugType>full</DebugType>
44 44
    <Optimize>false</Optimize>
......
52 52
    <PlatformTarget>AnyCPU</PlatformTarget>
53 53
    <DebugType>none</DebugType>
54 54
    <Optimize>true</Optimize>
55
    <OutputPath>bin\Release\</OutputPath>
55
    <OutputPath>..\publish\Controller\</OutputPath>
56 56
    <DefineConstants>
57 57
    </DefineConstants>
58 58
    <ErrorReport>prompt</ErrorReport>
ConvertService/ServiceController/Markus.Service.StationController/ViewModel/DataBaseItemsModel.cs
57 57

  
58 58
        #region Properties
59 59

  
60
        DataService.DataServiceClient WcfClient = new DataService.DataServiceClient();
60
        DataService.DataServiceClient WcfClient;
61 61

  
62 62
        public ObservableCollection<ProjectName> _ProjectNames;
63 63
        public ObservableCollection<ProjectName> ProjectNames
......
633 633

  
634 634
            if (!App.IsDesignMode)
635 635
            {
636
                WcfClient = new DataService.DataServiceClient();
636 637
                dispatcherTimer = new DispatcherTimer();
637 638
                dispatcherTimer.Tick += new EventHandler(Timer_Tick);
638 639
                dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
ConvertService/ServiceController/Markus.Service.StationController/ViewModel/FinalPDFAddDialogViewModel.cs
17 17

  
18 18
        public FinalPDFAddDialogViewModel()
19 19
        {
20
            ProjectName();
21
            FinalPDFAdd_OKCommand = new DelegateCommand(FinalPDFAdd_OK);
20
            if(!App.IsDesignMode)
21
            {
22
                WcfClient = new DataService.DataServiceClient();
23

  
24
                ProjectName();
25

  
26
                FinalPDFAdd_OKCommand = new DelegateCommand(FinalPDFAdd_OK);
27
            }
22 28
        }
23 29

  
24 30
        private async void ProjectName()
......
36 42

  
37 43
        #region Propertise
38 44

  
39
        DataService.DataServiceClient WcfClient = new DataService.DataServiceClient();
45
        DataService.DataServiceClient WcfClient;
40 46

  
41 47
        private string _FinalPDFAdd_Document_ID;
42 48
        public string FinalPDFAdd_Document_ID
ConvertService/ServiceController/Markus.Service.StationController/Views/ConvertAddDialog.xaml
68 68
                    <ColumnDefinition Width="10" />
69 69
                    <ColumnDefinition Width="90" />
70 70
                    <ColumnDefinition Width="10" />
71
                    <ColumnDefinition Width="1.5*"/>
71
                    <ColumnDefinition Width="1.1*"/>
72 72
                </Grid.ColumnDefinitions>
73 73
                <Grid.RowDefinitions>
74 74
                    <RowDefinition Height="12"/>
ConvertService/ServiceController/Markus.Service.StationController/Views/FinalPDFAddDialog.xaml
18 18
                    <Setter Property="Background" Value="Transparent"/>
19 19
                    <Setter Property="BorderBrush" Value="Transparent"/>
20 20
                    <Setter Property="BorderThickness" Value="0"/>
21
                    
21 22
                    <Setter Property="IsReadOnly" Value="true"/>
22 23
                    <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
23 24
                    <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/>
......
60 61

  
61 62
            <Grid Grid.Row="0" Margin="10">
62 63
                <Grid.ColumnDefinitions>
63
                    <ColumnDefinition Width="70" />
64
                    <ColumnDefinition Width="90" />
64 65
                    <ColumnDefinition Width="10" />
65 66
                    <ColumnDefinition Width="*"/>
66 67
                    <ColumnDefinition Width="10" />
67 68
                    <ColumnDefinition Width="90" />
68 69
                    <ColumnDefinition Width="10" />
69
                    <ColumnDefinition Width="1.5*"/>
70
                    <ColumnDefinition Width="1.1*"/>
70 71
                </Grid.ColumnDefinitions>
71 72
                <Grid.RowDefinitions>
72 73
                    <RowDefinition Height="12"/>
ConvertService/ServiceController/StationControllerService/..publish/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.SqlAzureExecutionStrategy">
8
            <summary>
9
            An <see cref="T:System.Data.Entity.Infrastructure.IDbExecutionStrategy"/> that retries actions that throw exceptions caused by SQL Azure transient failures.
10
            </summary>
11
            <remarks>
12
            This execution strategy will retry the operation on <see cref="T:System.TimeoutException"/> and <see cref="T:System.Data.SqlClient.SqlException"/>
13
            if the <see cref="P:System.Data.SqlClient.SqlException.Errors"/> contains any of the following error numbers:
14
            40613, 40501, 40197, 10929, 10928, 10060, 10054, 10053, 233, 64 and 20
15
            </remarks>
16
        </member>
17
        <member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.#ctor">
18
            <summary>
19
            Creates a new instance of <see cref="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy" />.
20
            </summary>
21
            <remarks>
22
            The default retry limit is 5, which means that the total amount of time spent between retries is 26 seconds plus the random factor.
23
            </remarks>
24
        </member>
25
        <member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.#ctor(System.Int32,System.TimeSpan)">
26
            <summary>
27
            Creates a new instance of <see cref="T:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy" /> with the specified limits for
28
            number of retries and the delay between retries.
29
            </summary>
30
            <param name="maxRetryCount"> The maximum number of retry attempts. </param>
31
            <param name="maxDelay"> The maximum delay in milliseconds between retries. </param>
32
        </member>
33
        <member name="M:System.Data.Entity.SqlServer.SqlAzureExecutionStrategy.ShouldRetryOn(System.Exception)">
34
            <inheritdoc/>
35
        </member>
36
        <member name="T:System.Data.Entity.SqlServer.SqlFunctions">
37
            <summary>
38
            Contains function stubs that expose SqlServer methods in Linq to Entities.
39
            </summary>
40
        </member>
41
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.ChecksumAggregate(System.Collections.Generic.IEnumerable{System.Int32})">
42
            <summary>Returns the checksum of the values in a collection. Null values are ignored.</summary>
43
            <returns>The checksum computed from the input collection.</returns>
44
            <param name="arg">The collection of values over which the checksum is computed.</param>
45
        </member>
46
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.ChecksumAggregate(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
47
            <summary>Returns the checksum of the values in a collection. Null values are ignored.</summary>
48
            <returns>The checksum computed from the input collection.</returns>
49
            <param name="arg">The collection of values over which the checksum is computed.</param>
50
        </member>
51
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Ascii(System.String)">
52
            <summary>Returns the ASCII code value of the left-most character of a character expression.</summary>
53
            <returns>The ASCII code of the first character in the input string.</returns>
54
            <param name="arg">A valid string.</param>
55
        </member>
56
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Char(System.Nullable{System.Int32})">
57
            <summary>Returns the character that corresponds to the specified integer ASCII value.</summary>
58
            <returns>The character that corresponds to the specified ASCII value.</returns>
59
            <param name="arg">An ASCII code.</param>
60
        </member>
61
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String)">
62
            <summary>Returns the starting position of one expression found within another expression.</summary>
63
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
64
            <param name="toFind">The string expression to be found.</param>
65
            <param name="toSearch">The string expression to be searched.</param>
66
        </member>
67
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[])">
68
            <summary>Returns the starting position of one expression found within another expression.</summary>
69
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
70
            <param name="toFind">The string expression to be found.</param>
71
            <param name="toSearch">The string expression to be searched.</param>
72
        </member>
73
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String,System.Nullable{System.Int32})">
74
            <summary>Returns the starting position of one expression found within another expression.</summary>
75
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
76
            <param name="toFind">The string expression to be found.</param>
77
            <param name="toSearch">The string expression to be searched.</param>
78
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
79
        </member>
80
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[],System.Nullable{System.Int32})">
81
            <summary>Returns the starting position of one expression found within another expression.</summary>
82
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
83
            <param name="toFind">The string expression to be found.</param>
84
            <param name="toSearch">The string expression to be searched.</param>
85
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
86
        </member>
87
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.String,System.String,System.Nullable{System.Int64})">
88
            <summary>Returns the starting position of one expression found within another expression.</summary>
89
            <returns>
90
            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 .
91
            </returns>
92
            <param name="toFind">The string expression to be found.</param>
93
            <param name="toSearch">The string expression to be searched.</param>
94
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
95
        </member>
96
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CharIndex(System.Byte[],System.Byte[],System.Nullable{System.Int64})">
97
            <summary>Returns the starting position of one expression found within another expression.</summary>
98
            <returns>The starting position of  toFind  if it is found in  toSearch .</returns>
99
            <param name="toFind">The string expression to be found.</param>
100
            <param name="toSearch">The string expression to be searched.</param>
101
            <param name="startLocation">The character position in  toSearch  where searching begins.</param>
102
        </member>
103
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Difference(System.String,System.String)">
104
            <summary>Returns an integer value that indicates the difference between the SOUNDEX values of two character expressions.</summary>
105
            <returns>The SOUNDEX difference between the two strings.</returns>
106
            <param name="string1">The first string.</param>
107
            <param name="string2">The second string.</param>
108
        </member>
109
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.NChar(System.Nullable{System.Int32})">
110
            <summary>Returns the Unicode character with the specified integer code, as defined by the Unicode standard.</summary>
111
            <returns>The character that corresponds to the input character code.</returns>
112
            <param name="arg">A character code.</param>
113
        </member>
114
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.PatIndex(System.String,System.String)">
115
            <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>
116
            <returns>The starting character position where the string pattern was found.</returns>
117
            <param name="stringPattern">A string pattern to search for.</param>
118
            <param name="target">The string to search.</param>
119
        </member>
120
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.QuoteName(System.String)">
121
            <summary>Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server delimited identifier.</summary>
122
            <returns>The original string with brackets added.</returns>
123
            <param name="stringArg">The expression that quote characters will be added to.</param>
124
        </member>
125
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.QuoteName(System.String,System.String)">
126
            <summary>Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server delimited identifier.</summary>
127
            <returns>The original string with the specified quote characters added.</returns>
128
            <param name="stringArg">The expression that quote characters will be added to.</param>
129
            <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>
130
        </member>
131
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Replicate(System.String,System.Nullable{System.Int32})">
132
            <summary>Repeats a string value a specified number of times.</summary>
133
            <returns>The target string, repeated the number of times specified by  count .</returns>
134
            <param name="target">A valid string.</param>
135
            <param name="count">The value that specifies how many time to repeat  target .</param>
136
        </member>
137
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.SoundCode(System.String)">
138
            <summary>Converts an alphanumeric string to a four-character (SOUNDEX) code to find similar-sounding words or names.</summary>
139
            <returns>The SOUNDEX code of the input string.</returns>
140
            <param name="arg">A valid string.</param>
141
        </member>
142
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Space(System.Nullable{System.Int32})">
143
            <summary>Returns a string of repeated spaces.</summary>
144
            <returns>A string that consists of the specified number of spaces.</returns>
145
            <param name="arg1">The number of spaces. If negative, a null string is returned.</param>
146
        </member>
147
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double})">
148
            <summary>Returns character data converted from numeric data.</summary>
149
            <returns>The numeric input expression converted to a string.</returns>
150
            <param name="number">A numeric expression.</param>
151
        </member>
152
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal})">
153
            <summary>Returns character data converted from numeric data.</summary>
154
            <returns>The input expression converted to a string.</returns>
155
            <param name="number">A numeric expression.</param>
156
        </member>
157
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double},System.Nullable{System.Int32})">
158
            <summary>Returns character data converted from numeric data.</summary>
159
            <returns>The numeric input expression converted to a string.</returns>
160
            <param name="number">A numeric expression.</param>
161
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
162
        </member>
163
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal},System.Nullable{System.Int32})">
164
            <summary>Returns character data converted from numeric data.</summary>
165
            <returns>The input expression converted to a string.</returns>
166
            <param name="number">A numeric expression.</param>
167
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
168
        </member>
169
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Double},System.Nullable{System.Int32},System.Nullable{System.Int32})">
170
            <summary>Returns character data converted from numeric data.</summary>
171
            <returns>The numeric input expression converted to a string.</returns>
172
            <param name="number">A numeric expression.</param>
173
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
174
            <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>
175
        </member>
176
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.StringConvert(System.Nullable{System.Decimal},System.Nullable{System.Int32},System.Nullable{System.Int32})">
177
            <summary>Returns character data converted from numeric data.</summary>
178
            <returns>The input expression converted to a string.</returns>
179
            <param name="number">A numeric expression.</param>
180
            <param name="length">The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.</param>
181
            <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>
182
        </member>
183
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Stuff(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.String)">
184
            <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>
185
            <returns>A string consisting of the two strings.</returns>
186
            <param name="stringInput">The target string.</param>
187
            <param name="start">The character position in  stringinput  where the replacement string is to be inserted.</param>
188
            <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>
189
            <param name="stringReplacement">The substring to be inserted into  stringInput .</param>
190
        </member>
191
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Unicode(System.String)">
192
            <summary>Returns the integer value, as defined by the Unicode standard, for the first character of the input expression.</summary>
193
            <returns>The character code for the first character in the input string.</returns>
194
            <param name="arg">A valid string.</param>
195
        </member>
196
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Acos(System.Nullable{System.Double})">
197
            <summary>A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.</summary>
198
            <returns>The angle, in radians, defined by the input cosine value.</returns>
199
            <param name="arg1">The cosine of an angle.</param>
200
        </member>
201
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Acos(System.Nullable{System.Decimal})">
202
            <summary>A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.</summary>
203
            <returns>An angle, measured in radians.</returns>
204
            <param name="arg1">The cosine of an angle.</param>
205
        </member>
206
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Asin(System.Nullable{System.Double})">
207
            <summary>A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.</summary>
208
            <returns>An angle, measured in radians.</returns>
209
            <param name="arg">The sine of an angle.</param>
210
        </member>
211
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Asin(System.Nullable{System.Decimal})">
212
            <summary>A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.</summary>
213
            <returns>An angle, measured in radians.</returns>
214
            <param name="arg">The sine of an angle.</param>
215
        </member>
216
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan(System.Nullable{System.Double})">
217
            <summary>A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.</summary>
218
            <returns>An angle, measured in radians.</returns>
219
            <param name="arg">The tangent of an angle.</param>
220
        </member>
221
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan(System.Nullable{System.Decimal})">
222
            <summary>A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.</summary>
223
            <returns>An angle, measured in radians.</returns>
224
            <param name="arg">The tangent of an angle.</param>
225
        </member>
226
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan2(System.Nullable{System.Double},System.Nullable{System.Double})">
227
            <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>
228
            <returns>An angle, measured in radians.</returns>
229
            <param name="arg1">The y-coordinate of a point.</param>
230
            <param name="arg2">The x-coordinate of a point.</param>
231
        </member>
232
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Atan2(System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
233
            <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>
234
            <returns>An angle, measured in radians.</returns>
235
            <param name="arg1">The y-coordinate of a point.</param>
236
            <param name="arg2">The x-coordinate of a point.</param>
237
        </member>
238
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cos(System.Nullable{System.Double})">
239
            <summary>Returns the trigonometric cosine of the specified angle, in radians, in the specified expression.</summary>
240
            <returns>The trigonometric cosine of the specified angle.</returns>
241
            <param name="arg">An angle, measured in radians.</param>
242
        </member>
243
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cos(System.Nullable{System.Decimal})">
244
            <summary>Returns the trigonometric cosine of the specified angle, in radians, in the specified expression.</summary>
245
            <returns>The trigonometric cosine of the specified angle.</returns>
246
            <param name="arg">An angle, measured in radians.</param>
247
        </member>
248
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cot(System.Nullable{System.Double})">
249
            <summary>A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.</summary>
250
            <returns>The trigonometric cotangent of the specified angle.</returns>
251
            <param name="arg">An angle, measured in radians.</param>
252
        </member>
253
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Cot(System.Nullable{System.Decimal})">
254
            <summary>A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.</summary>
255
            <returns>The trigonometric cotangent of the specified angle.</returns>
256
            <param name="arg">An angle, measured in radians.</param>
257
        </member>
258
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Int32})">
259
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
260
            <returns>The specified angle converted to degrees.</returns>
261
            <param name="arg1">An angle, measured in radians.</param>
262
        </member>
263
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Int64})">
264
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
265
            <returns>The specified angle converted to degrees.</returns>
266
            <param name="arg1">An angle, measured in radians.</param>
267
        </member>
268
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Decimal})">
269
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
270
            <returns>The specified angle converted to degrees.</returns>
271
            <param name="arg1">An angle, measured in radians.</param>
272
        </member>
273
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Degrees(System.Nullable{System.Double})">
274
            <summary>Returns the corresponding angle in degrees for an angle specified in radians.</summary>
275
            <returns>The specified angle converted to degrees.</returns>
276
            <param name="arg1">An angle, measured in radians.</param>
277
        </member>
278
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Exp(System.Nullable{System.Double})">
279
            <summary>Returns the exponential value of the specified float expression.</summary>
280
            <returns>The constant e raised to the power of the input value.</returns>
281
            <param name="arg">The input value.</param>
282
        </member>
283
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Exp(System.Nullable{System.Decimal})">
284
            <summary>Returns the exponential value of the specified float expression.</summary>
285
            <returns>The constant e raised to the power of the input value.</returns>
286
            <param name="arg">The input value.</param>
287
        </member>
288
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log(System.Nullable{System.Double})">
289
            <summary>Returns the natural logarithm of the specified input value.</summary>
290
            <returns>The natural logarithm of the input value.</returns>
291
            <param name="arg">A numeric expression.</param>
292
        </member>
293
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log(System.Nullable{System.Decimal})">
294
            <summary>Returns the natural logarithm of the specified input value.</summary>
295
            <returns>The natural logarithm of the input value.</returns>
296
            <param name="arg">A numeric expression.</param>
297
        </member>
298
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log10(System.Nullable{System.Double})">
299
            <summary>Returns the base-10 logarithm of the specified input value.</summary>
300
            <returns>The base-10 logarithm of the input value.</returns>
301
            <param name="arg">A numeric expression.</param>
302
        </member>
303
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Log10(System.Nullable{System.Decimal})">
304
            <summary>Returns the base-10 logarithm of the specified input value.</summary>
305
            <returns>The base-10 logarithm of the input value.</returns>
306
            <param name="arg">A numeric expression.</param>
307
        </member>
308
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Pi">
309
            <summary>Returns the constant value of pi.</summary>
310
            <returns>The numeric value of pi.</returns>
311
        </member>
312
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Int32})">
313
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
314
            <returns>The radian measure of the specified angle.</returns>
315
            <param name="arg">The angle, measured in degrees</param>
316
        </member>
317
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Int64})">
318
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
319
            <returns>The radian measure of the specified angle.</returns>
320
            <param name="arg">The angle, measured in degrees</param>
321
        </member>
322
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Decimal})">
323
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
324
            <returns>The radian measure of the specified angle.</returns>
325
            <param name="arg">The angle, measured in degrees.</param>
326
        </member>
327
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Radians(System.Nullable{System.Double})">
328
            <summary>Returns the radian measure corresponding to the specified angle in degrees.</summary>
329
            <returns>The radian measure of the specified angle.</returns>
330
            <param name="arg">The angle, measured in degrees.</param>
331
        </member>
332
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Rand">
333
            <summary>Returns a pseudo-random float value from 0 through 1, exclusive.</summary>
334
            <returns>The pseudo-random value.</returns>
335
        </member>
336
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Rand(System.Nullable{System.Int32})">
337
            <summary>Returns a pseudo-random float value from 0 through 1, exclusive.</summary>
338
            <returns>The pseudo-random value.</returns>
339
            <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>
340
        </member>
341
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Int32})">
342
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
343
            <returns>The sign of the input expression.</returns>
344
            <param name="arg">A numeric expression.</param>
345
        </member>
346
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Int64})">
347
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
348
            <returns>The sign of the input expression.</returns>
349
            <param name="arg">A numeric expression.</param>
350
        </member>
351
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Decimal})">
352
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
353
            <returns>The sign of the input expression.</returns>
354
            <param name="arg">A numeric expression.</param>
355
        </member>
356
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sign(System.Nullable{System.Double})">
357
            <summary>Returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.</summary>
358
            <returns>The sign of the input expression.</returns>
359
            <param name="arg">A numeric expression.</param>
360
        </member>
361
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sin(System.Nullable{System.Decimal})">
362
            <summary>Returns the trigonometric sine of the specified angle.</summary>
363
            <returns>The trigonometric sine of the input expression.</returns>
364
            <param name="arg">An angle, measured in radians.</param>
365
        </member>
366
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Sin(System.Nullable{System.Double})">
367
            <summary>Returns the trigonometric sine of the specified angle.</summary>
368
            <returns>The trigonometric sine of the input expression.</returns>
369
            <param name="arg">An angle, measured in radians.</param>
370
        </member>
371
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.SquareRoot(System.Nullable{System.Double})">
372
            <summary>Returns the square root of the specified number.</summary>
373
            <returns>The square root of the input value.</returns>
374
            <param name="arg">A numeric expression.</param>
375
        </member>
376
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.SquareRoot(System.Nullable{System.Decimal})">
377
            <summary>Returns the square root of the specified number.</summary>
378
            <returns>The square root of the input value.</returns>
379
            <param name="arg">A numeric expression.</param>
380
        </member>
381
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Square(System.Nullable{System.Double})">
382
            <summary>Returns the square of the specified number.</summary>
383
            <returns>The square of the input value.</returns>
384
            <param name="arg1">A numeric expression.</param>
385
        </member>
386
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Square(System.Nullable{System.Decimal})">
387
            <summary>Returns the square of the specified number.</summary>
388
            <returns>The square of the input value.</returns>
389
            <param name="arg1">A numeric expression.</param>
390
        </member>
391
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Tan(System.Nullable{System.Double})">
392
            <summary>Returns the trigonometric tangent of the input expression.</summary>
393
            <returns>The tangent of the input angle.</returns>
394
            <param name="arg">An angle, measured in radians.</param>
395
        </member>
396
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Tan(System.Nullable{System.Decimal})">
397
            <summary>Returns the trigonometric tangent of the input expression.</summary>
398
            <returns>The tangent of the input angle.</returns>
399
            <param name="arg">An angle, measured in radians.</param>
400
        </member>
401
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.DateTime})">
402
            <summary>Returns a new datetime value based on adding an interval to the specified date.</summary>
403
            <returns>The new date.</returns>
404
            <param name="datePartArg">The part of the date to increment. </param>
405
            <param name="number">The value used to increment a date by a specified amount.</param>
406
            <param name="date">The date to increment.</param>
407
        </member>
408
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.TimeSpan})">
409
            <summary>Returns a new time span value based on adding an interval to the specified time span.</summary>
410
            <returns>The new time span.</returns>
411
            <param name="datePartArg">The part of the date to increment.</param>
412
            <param name="number">The value used to increment a date by a specified amount.</param>
413
            <param name="time">The time span to increment.</param>
414
        </member>
415
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.Nullable{System.DateTimeOffset})">
416
            <summary>Returns a new date value based on adding an interval to the specified date.</summary>
417
            <returns>The new point in time, expressed as a date and time of day, relative to Coordinated Universal Time (UTC).</returns>
418
            <param name="datePartArg">The part of the date to increment.</param>
419
            <param name="number">The value used to increment a date by a specified amount.</param>
420
            <param name="dateTimeOffsetArg">The date to increment.</param>
421
        </member>
422
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateAdd(System.String,System.Nullable{System.Double},System.String)">
423
            <summary>Returns a new datetime value based on adding an interval to the specified date.</summary>
424
            <returns>
425
            A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" /> value that is the new date.
426
            </returns>
427
            <param name="datePartArg">The part of the date to increment.</param>
428
            <param name="number">The value used to increment a date by a specified amount.</param>
429
            <param name="date">The date to increment.</param>
430
        </member>
431
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
432
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
433
            <returns>The number of time intervals between the two dates.</returns>
434
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
435
            <param name="startDate">The first date.</param>
436
            <param name="endDate">The second date.</param>
437
        </member>
438
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
439
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
440
            <returns>The number of time intervals between the two dates.</returns>
441
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
442
            <param name="startDate">The first date.</param>
443
            <param name="endDate">The second date.</param>
444
        </member>
445
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
446
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
447
            <returns>The number of time intervals between the two dates.</returns>
448
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
449
            <param name="startDate">The first date.</param>
450
            <param name="endDate">The second date.</param>
451
        </member>
452
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.DateTime})">
453
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
454
            <returns>The number of time intervals between the two dates.</returns>
455
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
456
            <param name="startDate">The first date.</param>
457
            <param name="endDate">The second date.</param>
458
        </member>
459
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.DateTimeOffset})">
460
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
461
            <returns>The number of time intervals between the two dates.</returns>
462
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
463
            <param name="startDate">The first date.</param>
464
            <param name="endDate">The second date.</param>
465
        </member>
466
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.Nullable{System.TimeSpan})">
467
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
468
            <returns>The value specifying the number of time intervals between the two dates.</returns>
469
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
470
            <param name="startDate">The first date.</param>
471
            <param name="endDate">The second date.</param>
472
        </member>
473
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.String)">
474
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
475
            <returns>The number of time intervals between the two dates.</returns>
476
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
477
            <param name="startDate">The first date.</param>
478
            <param name="endDate">The second date.</param>
479
        </member>
480
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.String)">
481
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
482
            <returns>The number of time intervals between the two dates.</returns>
483
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
484
            <param name="startDate">The first date.</param>
485
            <param name="endDate">The second date.</param>
486
        </member>
487
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.String)">
488
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
489
            <returns>The number of time intervals between the two dates.</returns>
490
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
491
            <param name="startDate">The first date.</param>
492
            <param name="endDate">The second date.</param>
493
        </member>
494
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.String,System.String)">
495
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
496
            <returns>The number of time intervals between the two dates.</returns>
497
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
498
            <param name="startDate">The first date.</param>
499
            <param name="endDate">The second date.</param>
500
        </member>
501
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.DateTime})">
502
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
503
            <returns>The number of time intervals between the two dates.</returns>
504
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
505
            <param name="startDate">The first date.</param>
506
            <param name="endDate">The second date.</param>
507
        </member>
508
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.TimeSpan},System.Nullable{System.DateTimeOffset})">
509
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
510
            <returns>The number of time intervals between the two dates.</returns>
511
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
512
            <param name="startDate">The first date.</param>
513
            <param name="endDate">The second date.</param>
514
        </member>
515
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.TimeSpan})">
516
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
517
            <returns>The number of time intervals between the two dates.</returns>
518
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
519
            <param name="startDate">The first date.</param>
520
            <param name="endDate">The second date.</param>
521
        </member>
522
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.TimeSpan})">
523
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
524
            <returns>The number of time intervals between the two Dates.</returns>
525
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
526
            <param name="startDate">The first date.</param>
527
            <param name="endDate">The second date.</param>
528
        </member>
529
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTimeOffset})">
530
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
531
            <returns>The number of time intervals between the two dates.</returns>
532
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
533
            <param name="startDate">The first date.</param>
534
            <param name="endDate">The second date.</param>
535
        </member>
536
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateDiff(System.String,System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTime})">
537
            <summary>Returns the count of the specified datepart boundaries crossed between the specified start date and end date.</summary>
538
            <returns>The number of time intervals between the two dates.</returns>
539
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
540
            <param name="startDate">The first date.</param>
541
            <param name="endDate">The second date.</param>
542
        </member>
543
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.DateTime})">
544
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
545
            <returns>The specified part of the specified date.</returns>
546
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
547
            <param name="date">The date.</param>
548
        </member>
549
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.String)">
550
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
551
            <returns>The specified part of the specified date.</returns>
552
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
553
            <param name="date">The date.</param>
554
        </member>
555
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.TimeSpan})">
556
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
557
            <returns>The specified part of the specified date.</returns>
558
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
559
            <param name="date">The date.</param>
560
        </member>
561
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DateName(System.String,System.Nullable{System.DateTimeOffset})">
562
            <summary>Returns a character string that represents the specified datepart of the specified date.</summary>
563
            <returns>The specified part of the specified date.</returns>
564
            <param name="datePartArg">The part of the date to calculate the differing number of time intervals.</param>
565
            <param name="date">The date.</param>
566
        </member>
567
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.DateTime})">
568
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
569
            <returns>The specified datepart of the specified date.</returns>
570
            <param name="datePartArg">The part of the date to return the value.</param>
571
            <param name="date">The date.</param>
572
        </member>
573
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.DateTimeOffset})">
574
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
575
            <returns>The specified datepart of the specified date.</returns>
576
            <param name="datePartArg">The part of the date to return the value.</param>
577
            <param name="date">The date.</param>
578
        </member>
579
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.String)">
580
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
581
            <returns>The specified datepart of the specified date.</returns>
582
            <param name="datePartArg">The part of the date to return the value.</param>
583
            <param name="date">The date.</param>
584
        </member>
585
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DatePart(System.String,System.Nullable{System.TimeSpan})">
586
            <summary>Returns an integer that represents the specified datepart of the specified date.</summary>
587
            <returns>The specified datepart of the specified date.</returns>
588
            <param name="datePartArg">The part of the date to return the value.</param>
589
            <param name="date">The date.</param>
590
        </member>
591
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.GetDate">
592
            <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>
593
            <returns>The current database timestamp.</returns>
594
        </member>
595
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.GetUtcDate">
596
            <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>
597
            <returns>The current database UTC timestamp.</returns>
598
        </member>
599
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Boolean})">
600
            <summary>Returns the number of bytes used to represent any expression.</summary>
601
            <returns>The number of bytes in the input value.</returns>
602
            <param name="arg">The value to be examined for data length.</param>
603
        </member>
604
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Double})">
605
            <summary>Returns the number of bytes used to represent any expression.</summary>
606
            <returns>The number of bytes in the input value.</returns>
607
            <param name="arg">The value to be examined for data length.</param>
608
        </member>
609
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Decimal})">
610
            <summary>Returns the number of bytes used to represent any expression.</summary>
611
            <returns>The number of bytes in the input value.</returns>
612
            <param name="arg">The value to be examined for data length.</param>
613
        </member>
614
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.DateTime})">
615
            <summary>Returns the number of bytes used to represent any expression.</summary>
616
            <returns>The number of bytes in the input value.</returns>
617
            <param name="arg">The value to be examined for data length.</param>
618
        </member>
619
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.TimeSpan})">
620
            <summary>Returns the number of bytes used to represent any expression.</summary>
621
            <returns>The number of bytes in the input value.</returns>
622
            <param name="arg">The value to be examined for data length.</param>
623
        </member>
624
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.DateTimeOffset})">
625
            <summary>Returns the number of bytes used to represent any expression.</summary>
626
            <returns>The number of bytes in the input value.</returns>
627
            <param name="arg">The value to be examined for data length.</param>
628
        </member>
629
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.String)">
630
            <summary>Returns the number of bytes used to represent any expression.</summary>
631
            <returns>The number of bytes in the input value.</returns>
632
            <param name="arg">The value to be examined for data length.</param>
633
        </member>
634
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Byte[])">
635
            <summary>Returns the number of bytes used to represent any expression.</summary>
636
            <returns>The number of bytes in the input value.</returns>
637
            <param name="arg">The value to be examined for length.</param>
638
        </member>
639
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.DataLength(System.Nullable{System.Guid})">
640
            <summary>Returns the number of bytes used to represent any expression.</summary>
641
            <returns>The number of bytes in the input value.</returns>
642
            <param name="arg">The value to be examined for data length.</param>
643
        </member>
644
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean})">
645
            <summary>Returns the checksum value computed over the input argument.</summary>
646
            <returns>The checksum computed over the input value.</returns>
647
            <param name="arg1">The value for which the checksum is calculated.</param>
648
        </member>
649
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double})">
650
            <summary>Returns the checksum value computed over the input argument.</summary>
651
            <returns>The checksum computed over the input value.</returns>
652
            <param name="arg1">The value for which the checksum is calculated.</param>
653
        </member>
654
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal})">
655
            <summary>Returns the checksum value computed over the input argument.</summary>
656
            <returns>The checksum computed over the input value.</returns>
657
            <param name="arg1">The value for which the checksum is calculated.</param>
658
        </member>
659
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String)">
660
            <summary>Returns the checksum value computed over the input argument.</summary>
661
            <returns>The checksum computed over the input value.</returns>
662
            <param name="arg1">The value for which the checksum is calculated.</param>
663
        </member>
664
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime})">
665
            <summary>Returns the checksum value computed over the input argument.</summary>
666
            <returns>The checksum computed over the input values.</returns>
667
            <param name="arg1">The value for which the checksum is calculated.</param>
668
        </member>
669
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan})">
670
            <summary>Returns the checksum value computed over the input argument.</summary>
671
            <returns>The checksum computed over the input value.</returns>
672
            <param name="arg1">The value for which the checksum is calculated.</param>
673
        </member>
674
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset})">
675
            <summary>Returns the checksum value computed over the input argument.</summary>
676
            <returns>The checksum computed over the input value.</returns>
677
            <param name="arg1">The value for which the checksum is calculated.</param>
678
        </member>
679
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[])">
680
            <summary>Returns the checksum value computed over the input argument.</summary>
681
            <returns>The checksum computed over the input value.</returns>
682
            <param name="arg1">The character array for which the checksum is calculated.</param>
683
        </member>
684
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid})">
685
            <summary>Returns the checksum value computed over the input argument.</summary>
686
            <returns>The checksum computed over the input value.</returns>
687
            <param name="arg1">The value for which the checksum is calculated.</param>
688
        </member>
689
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
690
            <summary>Returns the checksum value computed over the input arguments.</summary>
691
            <returns>The checksum computed over the input values.</returns>
692
            <param name="arg1">The value for which the checksum is calculated.</param>
693
            <param name="arg2">The value for which the checksum is calculated.</param>
694
        </member>
695
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double},System.Nullable{System.Double})">
696
            <summary>Returns the checksum value computed over the input arguments.</summary>
697
            <returns>The checksum computed over the input values.</returns>
698
            <param name="arg1">The value for which the checksum is calculated.</param>
699
            <param name="arg2">The value for which the checksum is calculated.</param>
700
        </member>
701
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
702
            <summary>Returns the checksum value computed over the input arguments.</summary>
703
            <returns>The checksum computed over the input values.</returns>
704
            <param name="arg1">The value for which the checksum is calculated.</param>
705
            <param name="arg2">The value for which the checksum is calculated.</param>
706
        </member>
707
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String,System.String)">
708
            <summary>Returns the checksum value computed over the input arguments.</summary>
709
            <returns>The checksum computed over the input values.</returns>
710
            <param name="arg1">The value for which the checksum is calculated.</param>
711
            <param name="arg2">The value for which the checksum is calculated.</param>
712
        </member>
713
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
714
            <summary>Returns the checksum value computed over the input arguments.</summary>
715
            <returns>The checksum computed over the input values.</returns>
716
            <param name="arg1">The value for which the checksum is calculated.</param>
717
            <param name="arg2">The value for which the checksum is calculated.</param>
718
        </member>
719
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
720
            <summary>Returns the checksum value computed over the input arguments.</summary>
721
            <returns>The checksum computed over the input values.</returns>
722
            <param name="arg1">The value for which the checksum is calculated.</param>
723
            <param name="arg2">The value for which the checksum is calculated.</param>
724
        </member>
725
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
726
            <summary>Returns the checksum value computed over the input arguments.</summary>
727
            <returns>The checksum computed over the input values.</returns>
728
            <param name="arg1">The value for which the checksum is calculated.</param>
729
            <param name="arg2">The value for which the checksum is calculated.</param>
730
        </member>
731
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[],System.Byte[])">
732
            <summary>Returns the checksum value computed over the input arguments.</summary>
733
            <returns>The checksum computed over the input values.</returns>
734
            <param name="arg1">The character array for which the checksum is calculated.</param>
735
            <param name="arg2">The character array for which the checksum is calculated.</param>
736
        </member>
737
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid},System.Nullable{System.Guid})">
738
            <summary>Returns the checksum value computed over the input arguments.</summary>
739
            <returns>The checksum computed over the input values.</returns>
740
            <param name="arg1">The value for which the checksum is calculated.</param>
741
            <param name="arg2">The value for which the checksum is calculated.</param>
742
        </member>
743
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
744
            <summary>Returns the checksum value computed over the input arguments.</summary>
745
            <returns>The checksum computed over the input values.</returns>
746
            <param name="arg1">The value for which the checksum is calculated.</param>
747
            <param name="arg2">The value for which the checksum is calculated.</param>
748
            <param name="arg3">The value for which the checksum is calculated.</param>
749
        </member>
750
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Double},System.Nullable{System.Double},System.Nullable{System.Double})">
751
            <summary>Returns the checksum value computed over the input arguments.</summary>
752
            <returns>The checksum computed over the input values.</returns>
753
            <param name="arg1">The value for which the checksum is calculated.</param>
754
            <param name="arg2">The value for which the checksum is calculated.</param>
755
            <param name="arg3">The value for which the checksum is calculated.</param>
756
        </member>
757
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Decimal},System.Nullable{System.Decimal},System.Nullable{System.Decimal})">
758
            <summary>Returns the checksum value computed over the input arguments.</summary>
759
            <returns>The checksum computed over the input values.</returns>
760
            <param name="arg1">The value for which the checksum is calculated.</param>
761
            <param name="arg2">The value for which the checksum is calculated.</param>
762
            <param name="arg3">The value for which the checksum is calculated.</param>
763
        </member>
764
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.String,System.String,System.String)">
765
            <summary>Returns the checksum value computed over the input arguments.</summary>
766
            <returns>The checksum computed over the input values.</returns>
767
            <param name="arg1">The value for which the checksum is calculated.</param>
768
            <param name="arg2">The value for which the checksum is calculated.</param>
769
            <param name="arg3">The value for which the checksum is calculated.</param>
770
        </member>
771
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
772
            <summary>Returns the checksum value computed over the input arguments.</summary>
773
            <returns>The checksum computed over the input values.</returns>
774
            <param name="arg1">The value for which the checksum is calculated.</param>
775
            <param name="arg2">The value for which the checksum is calculated.</param>
776
            <param name="arg3">The value for which the checksum is calculated.</param>
777
        </member>
778
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset},System.Nullable{System.DateTimeOffset})">
779
            <summary>Returns the checksum value computed over the input arguments.</summary>
780
            <returns>The checksum computed over the input values.</returns>
781
            <param name="arg1">The value for which the checksum is calculated.</param>
782
            <param name="arg2">The value for which the checksum is calculated.</param>
783
            <param name="arg3">The value for which the checksum is calculated.</param>
784
        </member>
785
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan})">
786
            <summary>Returns the checksum value computed over the input arguments.</summary>
787
            <returns>The checksum computed over the input values.</returns>
788
            <param name="arg1">The value for which the checksum is calculated.</param>
789
            <param name="arg2">The value for which the checksum is calculated.</param>
790
            <param name="arg3">The value for which the checksum is calculated.</param>
791
        </member>
792
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Byte[],System.Byte[],System.Byte[])">
793
            <summary>Returns the checksum value computed over the input arguments.</summary>
794
            <returns>The checksum computed over the input values.</returns>
795
            <param name="arg1">The character array for which the checksum is calculated.</param>
796
            <param name="arg2">The character array for which the checksum is calculated.</param>
797
            <param name="arg3">The character array for which the checksum is calculated.</param>
798
        </member>
799
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.Checksum(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid})">
800
            <summary>Returns the checksum value computed over the input arguments.</summary>
801
            <returns>The checksum computed over the input values.</returns>
802
            <param name="arg1">The value for which the checksum is calculated.</param>
803
            <param name="arg2">The value for which the checksum is calculated.</param>
804
            <param name="arg3">The value for which the checksum is calculated.</param>
805
        </member>
806
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CurrentTimestamp">
807
            <summary>Returns the current date and time. </summary>
808
            <returns>The current date and time.</returns>
809
        </member>
810
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.CurrentUser">
811
            <summary>Returns the name of the current user.</summary>
812
            <returns>The name of the current user.</returns>
813
        </member>
814
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.HostName">
815
            <summary>Returns the workstation name.</summary>
816
            <returns>The name of the workstation.</returns>
817
        </member>
818
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.UserName(System.Nullable{System.Int32})">
819
            <summary>Returns a database user name corresponding to a specified identification number.</summary>
820
            <returns>The user name.</returns>
821
            <param name="arg">A user ID.</param>
822
        </member>
823
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.UserName">
824
            <summary>Returns a database user name corresponding to a specified identification number.</summary>
825
            <returns>The user name.</returns>
826
        </member>
827
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.IsNumeric(System.String)">
828
            <summary>Indicates whether the input value is a valid numeric type.</summary>
829
            <returns>1 if the input expression is a valid numeric data type; otherwise, 0.</returns>
830
            <param name="arg">A string expression.</param>
831
        </member>
832
        <member name="M:System.Data.Entity.SqlServer.SqlFunctions.IsDate(System.String)">
833
            <summary>Indicates whether the input value is a valid date or time.</summary>
834
            <returns>1 if the input expression is a valid date or time value of datetime or smalldatetime data types; otherwise, 0.</returns>
835
            <param name="arg">The tested value.</param>
836
        </member>
837
        <member name="T:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions">
838
            <summary>
839
            Contains function stubs that expose SqlServer methods in Linq to Entities.
840
            </summary>
841
        </member>
842
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.GetAncestor(System.Data.Entity.Hierarchy.HierarchyId,System.Int32)">
843
            <summary>Returns a hierarchyid representing the nth ancestor of this.</summary>
844
            <returns>A hierarchyid representing the nth ancestor of this.</returns>
845
            <param name="hierarchyIdValue">The hierarchyid value.</param>
846
            <param name="n">n</param>
847
        </member>
848
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.GetDescendant(System.Data.Entity.Hierarchy.HierarchyId,System.Data.Entity.Hierarchy.HierarchyId,System.Data.Entity.Hierarchy.HierarchyId)">
849
            <summary>Returns a child node of the parent.</summary>
850
            <param name="hierarchyIdValue">The hierarchyid value.</param>
851
            <param name="child1"> null or the hierarchyid of a child of the current node. </param>
852
            <param name="child2"> null or the hierarchyid of a child of the current node. </param>
853
            <returns>
854
            Returns one child node that is a descendant of the parent.
855
            If parent is null, returns null.
856
            If parent is not null, and both child1 and child2 are null, returns a child of parent.
857
            If parent and child1 are not null, and child2 is null, returns a child of parent greater than child1.
858
            If parent and child2 are not null and child1 is null, returns a child of parent less than child2.
859
            If parent, child1, and child2 are not null, returns a child of parent greater than child1 and less than child2.
860
            If child1 is not null and not a child of parent, an exception is raised.
861
            If child2 is not null and not a child of parent, an exception is raised.
862
            If child1 >= child2, an exception is raised.
863
            </returns>
864
        </member>
865
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.GetLevel(System.Data.Entity.Hierarchy.HierarchyId)">
866
            <summary>Returns an integer that represents the depth of the node this in the tree.</summary>
867
            <returns>An integer that represents the depth of the node this in the tree.</returns>
868
            <param name="hierarchyIdValue">The hierarchyid value.</param>
869
        </member>
870
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.GetRoot">
871
            <summary>Returns the root of the hierarchy tree.</summary>
872
            <returns>The root of the hierarchy tree.</returns>
873
        </member>
874
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.IsDescendantOf(System.Data.Entity.Hierarchy.HierarchyId,System.Data.Entity.Hierarchy.HierarchyId)">
875
            <summary>Returns true if this is a descendant of parent.</summary>
876
            <returns>True if this is a descendant of parent.</returns>
877
            <param name="hierarchyIdValue">The hierarchyid value.</param>
878
            <param name="parent">parent</param>
879
        </member>
880
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.GetReparentedValue(System.Data.Entity.Hierarchy.HierarchyId,System.Data.Entity.Hierarchy.HierarchyId,System.Data.Entity.Hierarchy.HierarchyId)">
881
            <summary>Returns a node whose path from the root is the path to newRoot, followed by the path from oldRoot to this.</summary>
882
            <returns>Hierarchyid value.</returns>
883
            <param name="hierarchyIdValue">The hierarchyid value.</param>
884
            <param name="oldRoot">oldRoot</param>
885
            <param name="newRoot">newRoot</param>
886
        </member>
887
        <member name="M:System.Data.Entity.SqlServer.SqlHierarchyIdFunctions.Parse(System.String)">
888
            <summary>Converts the canonical string representation of a hierarchyid to a hierarchyid value.</summary>
889
            <returns>Hierarchyid value.</returns>
890
            <param name="input">input</param>
891
        </member>
892
        <member name="M:System.Data.Entity.SqlServer.SqlProviderManifest.SupportsParameterOptimizationInSchemaQueries">
893
            <summary>
894
            Indicates if the provider supports the parameter optimization described in EntityFramework6 GitHub issue #195.
895
            </summary>
896
            <returns><c>True</c> since this provider supports the parameter optimization.</returns>
897
        </member>
898
        <member name="T:System.Data.Entity.SqlServer.SqlProviderServices">
899
            <summary>
900
            The DbProviderServices implementation for the SqlClient provider for SQL Server.
901
            </summary>
902
            <remarks>
903
            Note that instance of this type also resolve additional provider services for Microsoft SQL Server
904
            when this type is registered as an EF provider either using an entry in the application's config file
905
            or through code-based registration in <see cref="T:System.Data.Entity.DbConfiguration" />.
906
            The services resolved are:
907
            Requests for <see cref="T:System.Data.Entity.Infrastructure.IDbConnectionFactory" /> are resolved to a Singleton instance of
908
            <see cref="T:System.Data.Entity.Infrastructure.LocalDbConnectionFactory" /> to create connections to LocalDB by default.
909
            Requests for <see cref="T:System.Func`1" /> for the invariant name "System.Data.SqlClient"
910
            for any server name are resolved to a delegate that returns a <see cref="T:System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy" />
911
            to provide a non-retrying policy for SQL Server.
912
            Requests for <see cref="T:System.Data.Entity.Migrations.Sql.MigrationSqlGenerator" /> for the invariant name "System.Data.SqlClient" are
913
            resolved to <see cref="T:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator" /> instances to provide default Migrations SQL
914
            generation for SQL Server.
915
            Requests for <see cref="T:System.Data.Entity.Spatial.DbSpatialServices" /> for the invariant name "System.Data.SqlClient" are
916
            resolved to a Singleton instance of <see cref="T:System.Data.Entity.SqlServer.SqlSpatialServices" /> to provide default spatial
917
            services for SQL Server.
918
            </remarks>
919
        </member>
920
        <member name="F:System.Data.Entity.SqlServer.SqlProviderServices.ProviderInvariantName">
921
            <summary>
922
            This is the well-known string using in configuration files and code-based configuration as
923
            the "provider invariant name" used to specify Microsoft SQL Server for ADO.NET and
924
            Entity Framework provider services.
925
            </summary>
926
        </member>
927
        <member name="P:System.Data.Entity.SqlServer.SqlProviderServices.Instance">
928
            <summary>
929
            The Singleton instance of the SqlProviderServices type.
930
            </summary>
931
        </member>
932
        <member name="P:System.Data.Entity.SqlServer.SqlProviderServices.SqlServerTypesAssemblyName">
933
            <summary>
934
            Set to the full name of the Microsoft.SqlServer.Types assembly to override the default selection
935
            </summary>
936
        </member>
937
        <member name="P:System.Data.Entity.SqlServer.SqlProviderServices.TruncateDecimalsToScale">
938
            <summary>
939
            Get or sets a value indicating whether <see cref="T:System.Decimal" /> parameter values are truncated to 
940
            the scale (number of decimal places) defined for their corresponding columns when they are sent 
941
            to the database. A value of <c>true</c> indicates that <see cref="T:System.Data.SqlClient.SqlParameter" /> objects 
942
            created for <see cref="T:System.Decimal" /> columns will have their <see cref="P:System.Data.SqlClient.SqlParameter.Scale" /> 
943
            properties set, which will cause the parameter values to be truncated. If set to <c>false</c> 
944
            then the <see cref="P:System.Data.SqlClient.SqlParameter.Scale" /> properties will not be set, avoiding the truncation 
945
            behavior of <see cref="T:System.Data.SqlClient.SqlParameter" /> and allowing SQL Server to round values if necessary. 
946
            The default value is <c>true</c> to prevent breaking existing applications that depend on this 
947
            behavior. 
948
            </summary>
949
        </member>
950
        <member name="P:System.Data.Entity.SqlServer.SqlProviderServices.UseScopeIdentity">
951
            <summary>
952
            Gets or sets a value indicating whether to use the SCOPE_IDENTITY() function to retrieve values 
953
            generated by the database for numeric columns during an INSERT operation. The default value of 
954
            <c>true</c> is recommended and can provide better performance if all numeric values are generated 
955
            using IDENTITY columns. If set to <c>false</c>, an OUTPUT clause will be used instead. An OUTPUT 
956
            clause makes it possible to retrieve values generated by sequences or other means.
957
            </summary>
958
        </member>
959
        <member name="P:System.Data.Entity.SqlServer.SqlProviderServices.UseRowNumberOrderingInOffsetQueries">
960
            <summary>
961
            Gets or sets a value indicating whether the ROW_NUMBER() function is used in sort expression 
962
            passed to the ORDER BY clause when OFFSET is present in query. The default value of <c>true</c> 
963
            is recommended to obtain query results that are stable for paging operations. The value of 
964
            <c>false</c> can be used for compatibility with previous versions of EF and will cause the sort 
965
            expression to be passed unmodified to the ORDER BY clause, which can lead to unstable results 
966
            if the ordering is ambiguous. 
967
            </summary>
968
            <remarks>
969
            This flag only applies to SQL Server 2012 or later. This flag does not affect queries that have 
970
            already been translated to SQL and cached, therefore applications that need to set the value to 
971
            <c>false</c> for compatibility should do so before executing any queries.
972
            </remarks>
973
        </member>
974
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.RegisterInfoMessageHandler(System.Data.Common.DbConnection,System.Action{System.String})">
975
            <summary>
976
            Registers a handler to process non-error messages coming from the database provider.
977
            </summary>
978
            <param name="connection"> The connection to receive information for. </param>
979
            <param name="handler"> The handler to process messages. </param>
980
        </member>
981
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.CreateDbCommandDefinition(System.Data.Entity.Core.Common.DbProviderManifest,System.Data.Entity.Core.Common.CommandTrees.DbCommandTree)">
982
            <summary>
983
            Create a Command Definition object, given the connection and command tree
984
            </summary>
985
            <param name="providerManifest"> provider manifest that was determined from metadata </param>
986
            <param name="commandTree"> command tree for the statement </param>
987
            <returns> an executable command definition object </returns>
988
        </member>
989
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.CloneDbCommand(System.Data.Common.DbCommand)">
990
            <summary>
991
            See issue 2390 - cloning the DesignTimeVisible property on the
992
            <see cref="T:System.Data.SqlClient.SqlCommand" /> can cause deadlocks.
993
            So here overriding to provide a method that does not clone DesignTimeVisible.
994
            </summary>
995
            <param name="fromDbCommand"> the <see cref="T:System.Data.Common.DbCommand" /> object to clone </param>
996
            <returns >a clone of the <see cref="T:System.Data.Common.DbCommand" /> </returns>
997
        </member>
998
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.SetDbParameterValue(System.Data.Common.DbParameter,System.Data.Entity.Core.Metadata.Edm.TypeUsage,System.Object)">
999
            <summary>
1000
            Sets the parameter value and appropriate facets for the given <see cref="T:System.Data.Entity.Core.Metadata.Edm.TypeUsage"/>.
1001
            </summary>
1002
            <param name="parameter">The parameter.</param>
1003
            <param name="parameterType">The type of the parameter.</param>
1004
            <param name="value">The value of the parameter.</param>
1005
        </member>
1006
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.GetDbProviderManifestToken(System.Data.Common.DbConnection)">
1007
            <summary>
1008
            Returns provider manifest token for a given connection.
1009
            </summary>
1010
            <param name="connection"> Connection to find manifest token from. </param>
1011
            <returns> The provider manifest token for the specified connection. </returns>
1012
        </member>
1013
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.GetDbProviderManifest(System.String)">
1014
            <summary>
1015
            Returns the provider manifest by using the specified version information.
1016
            </summary>
1017
            <param name="versionHint"> The token information associated with the provider manifest. </param>
1018
            <returns> The provider manifest by using the specified version information. </returns>
1019
        </member>
1020
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.GetDbSpatialDataReader(System.Data.Common.DbDataReader,System.String)">
1021
            <summary>
1022
            Gets a spatial data reader for SQL Server.
1023
            </summary>
1024
            <param name="fromReader"> The reader where the spatial data came from. </param>
1025
            <param name="versionHint"> The manifest token associated with the provider manifest. </param>
1026
            <returns> The spatial data reader. </returns>
1027
        </member>
1028
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.DbGetSpatialServices(System.String)">
1029
            <summary>
1030
            Gets a spatial data reader for SQL Server.
1031
            </summary>
1032
            <param name="versionHint"> The manifest token associated with the provider manifest. </param>
1033
            <returns> The spatial data reader. </returns>
1034
        </member>
1035
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.DbCreateDatabaseScript(System.String,System.Data.Entity.Core.Metadata.Edm.StoreItemCollection)">
1036
            <summary>
1037
            Generates a data definition language (DDL) script that creates schema objects 
1038
            (tables, primary keys, foreign keys) based on the contents of the StoreItemCollection 
1039
            parameter and targeted for the version of the database corresponding to the provider manifest token.
1040
            </summary>
1041
            <param name="providerManifestToken"> The provider manifest token identifying the target version. </param>
1042
            <param name="storeItemCollection"> The structure of the database. </param>
1043
            <returns>
1044
            A DDL script that creates schema objects based on the contents of the StoreItemCollection parameter 
1045
            and targeted for the version of the database corresponding to the provider manifest token.
1046
            </returns>
1047
        </member>
1048
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.DbCreateDatabase(System.Data.Common.DbConnection,System.Nullable{System.Int32},System.Data.Entity.Core.Metadata.Edm.StoreItemCollection)">
1049
            <summary>
1050
            Create the database and the database objects.
1051
            If initial catalog is not specified, but AttachDBFilename is specified, we generate a random database name based on the AttachDBFilename.
1052
            Note: this causes pollution of the db, as when the connection string is later used, the mdf will get attached under a different name.
1053
            However if we try to replicate the name under which it would be attached, the following scenario would fail:
1054
            The file does not exist, but registered with database.
1055
            The user calls:  If (DatabaseExists) DeleteDatabase
1056
            CreateDatabase
1057
            For further details on the behavior when AttachDBFilename is specified see Dev10# 188936
1058
            </summary>
1059
            <param name="connection">Connection to a non-existent database that needs to be created and populated with the store objects indicated with the storeItemCollection parameter.</param>
1060
            <param name="commandTimeout">Execution timeout for any commands needed to create the database.</param>
1061
            <param name="storeItemCollection">The collection of all store items based on which the script should be created.</param>
1062
        </member>
1063
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.DbDatabaseExists(System.Data.Common.DbConnection,System.Nullable{System.Int32},System.Data.Entity.Core.Metadata.Edm.StoreItemCollection)">
1064
            <summary>
1065
            Determines whether the database for the given connection exists.
1066
            There are three cases:
1067
            1.  Initial Catalog = X, AttachDBFilename = null:   (SELECT Count(*) FROM sys.databases WHERE [name]= X) > 0
1068
            2.  Initial Catalog = X, AttachDBFilename = F:      if (SELECT Count(*) FROM sys.databases WHERE [name]= X) > 0 then <c>true</c>,
1069
            if not, try to open the connection and then return (SELECT Count(*) FROM sys.databases WHERE [name]= X) > 0
1070
            3.  Initial Catalog = null, AttachDBFilename = F:   Try to open the connection. If that succeeds the result is true, otherwise
1071
            if the there are no databases corresponding to the given file return <c>false</c>, otherwise throw.
1072
            Note: We open the connection to cover the scenario when the mdf exists, but is not attached.
1073
            Given that opening the connection would auto-attach it, it would not be appropriate to return <c>false</c> in this case.
1074
            Also note that checking for the existence of the file does not work for a remote server.  (Dev11 #290487)
1075
            For further details on the behavior when AttachDBFilename is specified see Dev10# 188936
1076
            </summary>
1077
            <param name="connection">Connection to a database whose existence is checked by this method.</param>
1078
            <param name="commandTimeout">Execution timeout for any commands needed to determine the existence of the database.</param>
1079
            <param name="storeItemCollection">The collection of all store items from the model. This parameter is no longer used for determining database existence.</param>
1080
            <returns>True if the provider can deduce the database only based on the connection.</returns>
1081
        </member>
1082
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.DbDatabaseExists(System.Data.Common.DbConnection,System.Nullable{System.Int32},System.Lazy{System.Data.Entity.Core.Metadata.Edm.StoreItemCollection})">
1083
            <summary>
1084
            Determines whether the database for the given connection exists.
1085
            There are three cases:
1086
            1.  Initial Catalog = X, AttachDBFilename = null:   (SELECT Count(*) FROM sys.databases WHERE [name]= X) > 0
1087
            2.  Initial Catalog = X, AttachDBFilename = F:      if (SELECT Count(*) FROM sys.databases WHERE [name]= X) > 0 then <c>true</c>,
1088
            if not, try to open the connection and then return (SELECT Count(*) FROM sys.databases WHERE [name]= X) > 0
1089
            3.  Initial Catalog = null, AttachDBFilename = F:   Try to open the connection. If that succeeds the result is true, otherwise
1090
            if the there are no databases corresponding to the given file return <c>false</c>, otherwise throw.
1091
            Note: We open the connection to cover the scenario when the mdf exists, but is not attached.
1092
            Given that opening the connection would auto-attach it, it would not be appropriate to return <c>false</c> in this case.
1093
            Also note that checking for the existence of the file does not work for a remote server.  (Dev11 #290487)
1094
            For further details on the behavior when AttachDBFilename is specified see Dev10# 188936
1095
            </summary>
1096
            <param name="connection">Connection to a database whose existence is checked by this method.</param>
1097
            <param name="commandTimeout">Execution timeout for any commands needed to determine the existence of the database.</param>
1098
            <param name="storeItemCollection">The collection of all store items from the model. This parameter is no longer used for determining database existence.</param>
1099
            <returns>True if the provider can deduce the database only based on the connection.</returns>
1100
        </member>
1101
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.DbDeleteDatabase(System.Data.Common.DbConnection,System.Nullable{System.Int32},System.Data.Entity.Core.Metadata.Edm.StoreItemCollection)">
1102
            <summary>
1103
            Delete the database for the given connection.
1104
            There are three cases:
1105
            1.  If Initial Catalog is specified (X) drop database X
1106
            2.  Else if AttachDBFilename is specified (F) drop all the databases corresponding to F
1107
            if none throw
1108
            3.  If niether the catalog not the file name is specified - throw
1109
            Note that directly deleting the files does not work for a remote server.  However, even for not attached
1110
            databases the current logic would work assuming the user does: if (DatabaseExists) DeleteDatabase
1111
            </summary>
1112
            <param name="connection"> Connection </param>
1113
            <param name="commandTimeout"> Timeout for internal commands. </param>
1114
            <param name="storeItemCollection"> Item Collection. </param>
1115
        </member>
1116
        <member name="M:System.Data.Entity.SqlServer.SqlProviderServices.CloneDbConnection(System.Data.Common.DbConnection,System.Data.Common.DbProviderFactory)">
1117
            <summary>
1118
            Clones the connection.
1119
            </summary>
1120
            <param name="connection">The original connection.</param>
1121
            <param name="factory">The factory to use.</param>
1122
            <returns>Cloned connection</returns>
1123
        </member>
1124
        <member name="T:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator">
1125
            <summary>
1126
            Provider to convert provider agnostic migration operations into SQL commands
1127
            that can be run against a Microsoft SQL Server database.
1128
            </summary>
1129
        </member>
1130
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.IsPermissionDeniedError(System.Exception)">
1131
            <summary>
1132
            Determines if a provider specific exception corresponds to a database-level permission denied error.
1133
            </summary>
1134
            <param name="exception">The database exception.</param>
1135
            <returns> true if the supplied exception corresponds to a database-level permission denied error; otherwise false. </returns>
1136
        </member>
1137
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Collections.Generic.IEnumerable{System.Data.Entity.Migrations.Model.MigrationOperation},System.String)">
1138
            <summary>
1139
            Converts a set of migration operations into Microsoft SQL Server specific SQL.
1140
            </summary>
1141
            <param name="migrationOperations"> The operations to be converted. </param>
1142
            <param name="providerManifestToken"> Token representing the version of SQL Server being targeted (i.e. "2005", "2008"). </param>
1143
            <returns> A list of SQL statements to be executed to perform the migration operations. </returns>
1144
        </member>
1145
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateProcedureBody(System.Collections.Generic.ICollection{System.Data.Entity.Core.Common.CommandTrees.DbModificationCommandTree},System.String,System.String)">
1146
            <summary>
1147
            Generates the SQL body for a stored procedure.
1148
            </summary>
1149
            <param name="commandTrees">The command trees representing the commands for an insert, update or delete operation.</param>
1150
            <param name="rowsAffectedParameter">The rows affected parameter name.</param>
1151
            <param name="providerManifestToken">The provider manifest token.</param>
1152
            <returns>The SQL body for the stored procedure.</returns>
1153
        </member>
1154
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.UpdateDatabaseOperation)">
1155
            <summary>
1156
            Generates the specified update database operation which represents applying a series of migrations.
1157
            The generated script is idempotent, meaning it contains conditional logic to check if individual migrations 
1158
            have already been applied and only apply the pending ones.
1159
            </summary>
1160
            <param name="updateDatabaseOperation">The update database operation.</param>
1161
        </member>
1162
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.MigrationOperation)">
1163
            <summary>
1164
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.MigrationOperation" />.
1165
            Allows derived providers to handle additional operation types.
1166
            Generated SQL should be added using the Statement method.
1167
            </summary>
1168
            <param name="migrationOperation"> The operation to produce SQL for. </param>
1169
        </member>
1170
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.CreateConnection">
1171
            <summary>
1172
            Creates an empty connection for the current provider.
1173
            Allows derived providers to use connection other than <see cref="T:System.Data.SqlClient.SqlConnection" />.
1174
            </summary>
1175
            <returns> An empty connection for the current provider. </returns>
1176
        </member>
1177
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.CreateProcedureOperation)">
1178
            <summary>
1179
            Generates the specified create procedure operation.
1180
            </summary>
1181
            <param name="createProcedureOperation">The create procedure operation.</param>
1182
        </member>
1183
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AlterProcedureOperation)">
1184
            <summary>
1185
            Generates the specified alter procedure operation.
1186
            </summary>
1187
            <param name="alterProcedureOperation">The alter procedure operation.</param>
1188
        </member>
1189
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropProcedureOperation)">
1190
            <summary>
1191
            Generates the specified drop procedure operation.
1192
            </summary>
1193
            <param name="dropProcedureOperation">The drop procedure operation.</param>
1194
        </member>
1195
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.CreateTableOperation)">
1196
            <summary>
1197
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.CreateTableOperation" />. This method differs from
1198
            <see cref="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.WriteCreateTable(System.Data.Entity.Migrations.Model.CreateTableOperation)" /> in that it will
1199
            create the target database schema if it does not already exist.
1200
            Generated SQL should be added using the Statement method.
1201
            </summary>
1202
            <param name="createTableOperation"> The operation to produce SQL for. </param>
1203
        </member>
1204
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.WriteCreateTable(System.Data.Entity.Migrations.Model.CreateTableOperation)">
1205
            <summary>
1206
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.CreateTableOperation" />.
1207
            Generated SQL should be added using the Statement method.
1208
            </summary>
1209
            <param name="createTableOperation"> The operation to produce SQL for. </param>
1210
        </member>
1211
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.WriteCreateTable(System.Data.Entity.Migrations.Model.CreateTableOperation,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1212
            <summary>
1213
            Writes CREATE TABLE SQL to the target writer.
1214
            </summary>
1215
            <param name="createTableOperation"> The operation to produce SQL for. </param>
1216
            <param name="writer"> The target writer. </param>
1217
        </member>
1218
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AlterTableOperation)">
1219
            <summary>
1220
            Override this method to generate SQL when the definition of a table or its attributes are changed.
1221
            The default implementation of this method does nothing.
1222
            </summary>
1223
            <param name="alterTableOperation"> The operation describing changes to the table. </param>
1224
        </member>
1225
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateMakeSystemTable(System.Data.Entity.Migrations.Model.CreateTableOperation,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1226
            <summary>
1227
            Generates SQL to mark a table as a system table.
1228
            Generated SQL should be added using the Statement method.
1229
            </summary>
1230
            <param name="createTableOperation"> The table to mark as a system table. </param>
1231
            <param name="writer"> The <see cref='T:System.Data.Entity.Migrations.Utilities.IndentedTextWriter' /> to write the generated SQL to. </param>
1232
        </member>
1233
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.GenerateCreateSchema(System.String)">
1234
            <summary>
1235
            Generates SQL to create a database schema.
1236
            Generated SQL should be added using the Statement method.
1237
            </summary>
1238
            <param name="schema"> The name of the schema to create. </param>
1239
        </member>
1240
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AddForeignKeyOperation)">
1241
            <summary>
1242
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AddForeignKeyOperation" />.
1243
            Generated SQL should be added using the Statement method.
1244
            </summary>
1245
            <param name="addForeignKeyOperation"> The operation to produce SQL for. </param>
1246
        </member>
1247
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropForeignKeyOperation)">
1248
            <summary>
1249
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropForeignKeyOperation" />.
1250
            Generated SQL should be added using the Statement method.
1251
            </summary>
1252
            <param name="dropForeignKeyOperation"> The operation to produce SQL for. </param>
1253
        </member>
1254
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.CreateIndexOperation)">
1255
            <summary>
1256
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.CreateIndexOperation" />.
1257
            Generated SQL should be added using the Statement method.
1258
            </summary>
1259
            <param name="createIndexOperation"> The operation to produce SQL for. </param>
1260
        </member>
1261
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropIndexOperation)">
1262
            <summary>
1263
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropIndexOperation" />.
1264
            Generated SQL should be added using the Statement method.
1265
            </summary>
1266
            <param name="dropIndexOperation"> The operation to produce SQL for. </param>
1267
        </member>
1268
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AddPrimaryKeyOperation)">
1269
            <summary>
1270
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AddPrimaryKeyOperation" />.
1271
            Generated SQL should be added using the Statement method.
1272
            </summary>
1273
            <param name="addPrimaryKeyOperation"> The operation to produce SQL for. </param>
1274
        </member>
1275
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropPrimaryKeyOperation)">
1276
            <summary>
1277
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropPrimaryKeyOperation" />.
1278
            Generated SQL should be added using the Statement method.
1279
            </summary>
1280
            <param name="dropPrimaryKeyOperation"> The operation to produce SQL for. </param>
1281
        </member>
1282
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AddColumnOperation)">
1283
            <summary>
1284
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AddColumnOperation" />.
1285
            Generated SQL should be added using the Statement method.
1286
            </summary>
1287
            <param name="addColumnOperation"> The operation to produce SQL for. </param>
1288
        </member>
1289
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropColumnOperation)">
1290
            <summary>
1291
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropColumnOperation" />.
1292
            Generated SQL should be added using the Statement method.
1293
            </summary>
1294
            <param name="dropColumnOperation"> The operation to produce SQL for. </param>
1295
        </member>
1296
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.AlterColumnOperation)">
1297
            <summary>
1298
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.AlterColumnOperation" />.
1299
            Generated SQL should be added using the Statement method.
1300
            </summary>
1301
            <param name="alterColumnOperation"> The operation to produce SQL for. </param>
1302
        </member>
1303
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.DropDefaultConstraint(System.String,System.String,System.Data.Entity.Migrations.Utilities.IndentedTextWriter)">
1304
            <summary>
1305
            Call this method to generate SQL that will attempt to drop the default constraint created
1306
            when a column is created. This method is usually called by code that overrides the creation or
1307
            altering of columns.
1308
            </summary>
1309
            <param name="table">The table to which the constraint applies.</param>
1310
            <param name="column">The column to which the constraint applies.</param>
1311
            <param name="writer">The writer to which generated SQL should be written.</param>
1312
        </member>
1313
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.DropTableOperation)">
1314
            <summary>
1315
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.DropTableOperation" />.
1316
            Generated SQL should be added using the Statement method.
1317
            </summary>
1318
            <param name="dropTableOperation"> The operation to produce SQL for. </param>
1319
        </member>
1320
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.SqlOperation)">
1321
            <summary>
1322
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.SqlOperation" />.
1323
            Generated SQL should be added using the Statement or StatementBatch methods.
1324
            </summary>
1325
            <param name="sqlOperation"> The operation to produce SQL for. </param>
1326
        </member>
1327
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameColumnOperation)">
1328
            <summary>
1329
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.RenameColumnOperation" />.
1330
            Generated SQL should be added using the Statement method.
1331
            </summary>
1332
            <param name="renameColumnOperation"> The operation to produce SQL for. </param>
1333
        </member>
1334
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameIndexOperation)">
1335
            <summary>
1336
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.RenameIndexOperation" />.
1337
            Generated SQL should be added using the Statement method.
1338
            </summary>
1339
            <param name="renameIndexOperation"> The operation to produce SQL for. </param>
1340
        </member>
1341
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameTableOperation)">
1342
            <summary>
1343
            Generates SQL for a <see cref="T:System.Data.Entity.Migrations.Model.RenameTableOperation" />.
1344
            Generated SQL should be added using the Statement method.
1345
            </summary>
1346
            <param name="renameTableOperation"> The operation to produce SQL for. </param>
1347
        </member>
1348
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.RenameProcedureOperation)">
1349
            <summary>
1350
            Generates the specified rename procedure operation.
1351
            </summary>
1352
            <param name="renameProcedureOperation">The rename procedure operation.</param>
1353
        </member>
1354
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.MoveProcedureOperation)">
1355
            <summary>
1356
            Generates the specified move procedure operation.
1357
            </summary>
1358
            <param name="moveProcedureOperation">The move procedure operation.</param>
1359
        </member>
1360
        <member name="M:System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Generate(System.Data.Entity.Migrations.Model.MoveTableOperation)">
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

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