-
-
Notifications
You must be signed in to change notification settings - Fork 416
Expand file tree
/
Copy pathMySqlDbContextOptionsBuilderExtensions.cs
More file actions
370 lines (336 loc) · 21.5 KB
/
MySqlDbContextOptionsBuilderExtensions.cs
File metadata and controls
370 lines (336 loc) · 21.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
// Copyright (c) Pomelo Foundation. All rights reserved.
// Licensed under the MIT. See LICENSE in the project root for license information.
using System;
using System.Data.Common;
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
using Pomelo.EntityFrameworkCore.MySql.Infrastructure.Internal;
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore.Diagnostics;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Utilities;
// ReSharper disable once CheckNamespace
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Provides extension methods on <see cref="DbContextOptionsBuilder"/> and <see cref="DbContextOptionsBuilder{T}"/>
/// to configure a <see cref="DbContext"/> to use with MySQL/MariaDB and Pomelo.EntityFrameworkCore.MySql.
/// </summary>
public static class MySqlDbContextOptionsBuilderExtensions
{
/// <summary>
/// <para>
/// Configures the context to connect to a MySQL compatible database, but without initially setting any
/// <see cref="DbConnection" /> or connection string.
/// </para>
/// <para>
/// The connection or connection string must be set before the <see cref="DbContext" /> is used to connect
/// to a database. Set a connection using <see cref="RelationalDatabaseFacadeExtensions.SetDbConnection" />.
/// Set a connection string using <see cref="RelationalDatabaseFacadeExtensions.SetConnectionString" />.
/// </para>
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder UseMySql(
[NotNull] this DbContextOptionsBuilder optionsBuilder,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
{
Check.NotNull(optionsBuilder, nameof(optionsBuilder));
var extension = GetOrCreateExtension(optionsBuilder)
.WithServerVersion(serverVersion);
((IDbContextOptionsBuilderInfrastructure)optionsBuilder).AddOrUpdateExtension(extension);
ConfigureWarnings(optionsBuilder);
var mySqlDbContextOptionsBuilder = new MySqlDbContextOptionsBuilder(optionsBuilder)
.UseParameterizedCollectionMode(ParameterTranslationMode.Constant);
mySqlOptionsAction?.Invoke(mySqlDbContextOptionsBuilder);
return optionsBuilder;
}
/// <summary>
/// Configures the context to connect to a MySQL compatible database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="connectionString"> The connection string of the database to connect to. </param>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder UseMySql(
[NotNull] this DbContextOptionsBuilder optionsBuilder,
[CanBeNull] string connectionString,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
{
Check.NotNull(optionsBuilder, nameof(optionsBuilder));
Check.NullButNotEmpty(connectionString, nameof(connectionString));
var extension = (MySqlOptionsExtension)GetOrCreateExtension(optionsBuilder)
.WithServerVersion(serverVersion)
.WithConnectionString(connectionString);
((IDbContextOptionsBuilderInfrastructure)optionsBuilder).AddOrUpdateExtension(extension);
ConfigureWarnings(optionsBuilder);
var mySqlDbContextOptionsBuilder = new MySqlDbContextOptionsBuilder(optionsBuilder)
.UseParameterizedCollectionMode(ParameterTranslationMode.Constant);
mySqlOptionsAction?.Invoke(mySqlDbContextOptionsBuilder);
return optionsBuilder;
}
/// <summary>
/// Configures the context to connect to a MySQL compatible database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="connection">
/// An existing <see cref="DbConnection" /> to be used to connect to the database. If the connection is
/// in the open state then EF will not open or close the connection. If the connection is in the closed
/// state then EF will open and close the connection as needed.
/// </param>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder UseMySql(
[NotNull] this DbContextOptionsBuilder optionsBuilder,
[NotNull] DbConnection connection,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
{
Check.NotNull(optionsBuilder, nameof(optionsBuilder));
Check.NotNull(connection, nameof(connection));
var extension = (MySqlOptionsExtension)GetOrCreateExtension(optionsBuilder)
.WithServerVersion(serverVersion)
.WithConnection(connection);
((IDbContextOptionsBuilderInfrastructure)optionsBuilder).AddOrUpdateExtension(extension);
ConfigureWarnings(optionsBuilder);
var mySqlDbContextOptionsBuilder = new MySqlDbContextOptionsBuilder(optionsBuilder)
.UseParameterizedCollectionMode(ParameterTranslationMode.Constant);
mySqlOptionsAction?.Invoke(mySqlDbContextOptionsBuilder);
return optionsBuilder;
}
/// <summary>
/// Configures the context to connect to a MySQL compatible database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="dataSource"> A <see cref="DbDataSource" /> which will be used to get database connections. </param>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder UseMySql(
this DbContextOptionsBuilder optionsBuilder,
DbDataSource dataSource,
[NotNull] ServerVersion serverVersion,
Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
{
Check.NotNull(optionsBuilder, nameof(optionsBuilder));
Check.NotNull(dataSource, nameof(dataSource));
var extension = (MySqlOptionsExtension)GetOrCreateExtension(optionsBuilder)
.WithServerVersion(serverVersion)
.WithDataSource(dataSource);
((IDbContextOptionsBuilderInfrastructure)optionsBuilder).AddOrUpdateExtension(extension);
ConfigureWarnings(optionsBuilder);
var mySqlDbContextOptionsBuilder = new MySqlDbContextOptionsBuilder(optionsBuilder)
.UseParameterizedCollectionMode(ParameterTranslationMode.Constant);
mySqlOptionsAction?.Invoke(mySqlDbContextOptionsBuilder);
return optionsBuilder;
}
/// <summary>
/// <para>
/// Configures the context to connect to a MySQL compatible database, but without initially setting any
/// <see cref="DbConnection" /> or connection string.
/// </para>
/// <para>
/// The connection or connection string must be set before the <see cref="DbContext" /> is used to connect
/// to a database. Set a connection using <see cref="RelationalDatabaseFacadeExtensions.SetDbConnection" />.
/// Set a connection string using <see cref="RelationalDatabaseFacadeExtensions.SetConnectionString" />.
/// </para>
/// </summary>
/// <typeparam name="TContext"> The type of context to be configured. </typeparam>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder<TContext> UseMySql<TContext>(
[NotNull] this DbContextOptionsBuilder<TContext> optionsBuilder,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
where TContext : DbContext
=> (DbContextOptionsBuilder<TContext>)UseMySql(
(DbContextOptionsBuilder)optionsBuilder, serverVersion, mySqlOptionsAction);
/// <summary>
/// Configures the context to connect to a MySQL compatible database.
/// </summary>
/// <typeparam name="TContext"> The type of context to be configured. </typeparam>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="connectionString"> The connection string of the database to connect to. </param>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder<TContext> UseMySql<TContext>(
[NotNull] this DbContextOptionsBuilder<TContext> optionsBuilder,
[NotNull] string connectionString,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
where TContext : DbContext
=> (DbContextOptionsBuilder<TContext>)UseMySql(
(DbContextOptionsBuilder)optionsBuilder, connectionString, serverVersion, mySqlOptionsAction);
/// <summary>
/// Configures the context to connect to a MySQL compatible database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="connection">
/// An existing <see cref="DbConnection" /> to be used to connect to the database. If the connection is
/// in the open state then EF will not open or close the connection. If the connection is in the closed
/// state then EF will open and close the connection as needed.
/// </param>
/// <typeparam name="TContext"> The type of context to be configured. </typeparam>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder<TContext> UseMySql<TContext>(
[NotNull] this DbContextOptionsBuilder<TContext> optionsBuilder,
[NotNull] DbConnection connection,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
where TContext : DbContext
=> (DbContextOptionsBuilder<TContext>)UseMySql(
(DbContextOptionsBuilder)optionsBuilder, connection, serverVersion, mySqlOptionsAction);
/// <summary>
/// Configures the context to connect to a MySQL compatible database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="dataSource"> A <see cref="DbDataSource" /> which will be used to get database connections. </param>
/// <typeparam name="TContext"> The type of context to be configured. </typeparam>
/// <param name="serverVersion">
/// <para>
/// The version of the database server.
/// </para>
/// <para>
/// Create an object for this parameter by calling the static method
/// <see cref="ServerVersion.Create(System.Version,ServerType)"/>,
/// by calling the static method <see cref="ServerVersion.AutoDetect(string)"/> (which retrieves the server version directly
/// from the database server),
/// by parsing a version string using the static methods
/// <see cref="ServerVersion.Parse(string)"/> or <see cref="ServerVersion.TryParse(string,out ServerVersion)"/>,
/// or by directly instantiating an object from the <see cref="MySqlServerVersion"/> (for MySQL) or
/// <see cref="MariaDbServerVersion"/> (for MariaDB) classes.
/// </para>
/// </param>
/// <param name="mySqlOptionsAction"> An optional action to allow additional MySQL specific configuration. </param>
/// <returns> The options builder so that further configuration can be chained. </returns>
public static DbContextOptionsBuilder<TContext> UseMySql<TContext>(
[NotNull] this DbContextOptionsBuilder<TContext> optionsBuilder,
[NotNull] DbDataSource dataSource,
[NotNull] ServerVersion serverVersion,
[CanBeNull] Action<MySqlDbContextOptionsBuilder> mySqlOptionsAction = null)
where TContext : DbContext
=> (DbContextOptionsBuilder<TContext>)UseMySql(
(DbContextOptionsBuilder)optionsBuilder, dataSource, serverVersion, mySqlOptionsAction);
private static MySqlOptionsExtension GetOrCreateExtension(DbContextOptionsBuilder optionsBuilder)
=> optionsBuilder.Options.FindExtension<MySqlOptionsExtension>()
?? new MySqlOptionsExtension();
private static void ConfigureWarnings(DbContextOptionsBuilder optionsBuilder)
{
var coreOptionsExtension
= optionsBuilder.Options.FindExtension<CoreOptionsExtension>()
?? new CoreOptionsExtension();
coreOptionsExtension = coreOptionsExtension.WithWarningsConfiguration(
coreOptionsExtension.WarningsConfiguration.TryWithExplicit(
RelationalEventId.AmbientTransactionWarning, WarningBehavior.Throw));
((IDbContextOptionsBuilderInfrastructure)optionsBuilder).AddOrUpdateExtension(coreOptionsExtension);
}
}
}