1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System.Data.Common;
- using System.Threading;
- using System.Threading.Tasks;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Storage;
- namespace EasyDevCore.Database
- {
- /// <summary>
- ///
- /// </summary>
- /// <seealso cref="Microsoft.EntityFrameworkCore.DbContext" />
- public class EasyDbContext: DbContext
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="EasyDbContext"/> class.
- /// </summary>
- /// <param name="options">The options for this context.</param>
- public EasyDbContext(DbContextOptions options) : base(options)
- {
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="EasyDbContext"/> class.
- /// </summary>
- protected EasyDbContext()
- {
- }
- /// <summary>
- /// <para>
- /// Override this method to configure the database (and other options) to be used for this context.
- /// This method is called for each instance of the context that is created.
- /// The base implementation does nothing.
- /// </para>
- /// <para>
- /// In situations where an instance of <see cref="T:Microsoft.EntityFrameworkCore.DbContextOptions" /> may or may not have been passed
- /// to the constructor, you can use <see cref="P:Microsoft.EntityFrameworkCore.DbContextOptionsBuilder.IsConfigured" /> to determine if
- /// the options have already been set, and skip some or all of the logic in
- /// <see cref="M:Microsoft.EntityFrameworkCore.DbContext.OnConfiguring(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder)" />.
- /// </para>
- /// </summary>
- /// <param name="optionsBuilder">A builder used to create or modify options for this context. Databases (and other extensions)
- /// typically define extension methods on this object that allow you to configure the context.</param>
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) => optionsBuilder.AddInterceptors(new EasyCommandInterceptor());
- }
- }
|