DRN.Framework.EntityFramework 0.2.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package DRN.Framework.EntityFramework --version 0.2.1
                    
NuGet\Install-Package DRN.Framework.EntityFramework -Version 0.2.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DRN.Framework.EntityFramework" Version="0.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DRN.Framework.EntityFramework" Version="0.2.1" />
                    
Directory.Packages.props
<PackageReference Include="DRN.Framework.EntityFramework" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DRN.Framework.EntityFramework --version 0.2.1
                    
#r "nuget: DRN.Framework.EntityFramework, 0.2.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=DRN.Framework.EntityFramework&version=0.2.1
                    
Install as a Cake Addin
#tool nuget:?package=DRN.Framework.EntityFramework&version=0.2.1
                    
Install as a Cake Tool

master develop Quality Gate Status

Security Rating Maintainability Rating Reliability Rating Vulnerabilities Bugs Lines of Code Coverage

DRN.Framework.EntityFramework provides DrnContext with conventions to develop rapid and effective domain models.

DRNContext

DrnContext has following unique features:

  • Implements IDesignTimeDbContextFactory to enable migrations from dbContext defining projects.
  • Implements IDesignTimeServices to support multi context projects with default output directories in the context specific folder.
  • Uses HasDrnContextServiceCollectionModule attribute for automatic registration with AddServicesWithAttributes service collection extension method.
  • Uses context name (typeof(TContext).Name) as connection string key by convention.
  • Automatically applies IEntityTypeConfiguration implementations from the assembly whose namespace contains the derived context's namespace.
  • Automatically marks Entities derived from DRN.Framework.SharedKernel.Domain.Entity as created, modified or deleted.
  • Enables DRN.Framework.Testing to create easy and effective integration tests with conventions and automatic registrations.
    • Application modules can be registered without any modification to TestContext
    • TestContext's ContainerContext
      • creates a postgresql container then scans TestContext's service collection for inherited DrnContexts.
      • Adds a connection strings to TestContext's configuration for each DrnContext according to convention.
    • TestContext acts as a ServiceProvider and when a service is requested it can build it from service collection with all dependencies.
namespace DRN.Framework.EntityFramework.Context;

[HasDrnContextServiceCollectionModule]
public abstract class DrnContext<TContext> : DbContext, IDesignTimeDbContextFactory<TContext>, IDesignTimeServices where TContext : DbContext, new()
{ 
...

public class HasDrnContextServiceCollectionModuleAttribute : HasServiceCollectionModuleAttribute
{
    static HasDrnContextServiceCollectionModuleAttribute()
    {
        ModuleMethodInfo = typeof(ServiceCollectionExtensions).GetMethod(nameof(ServiceCollectionExtensions.AddDbContextsWithConventions))!;
    }
}

Example Usage

namespace Sample.Infra;

public static class InfraModule
{
    public static IServiceCollection AddSampleInfraServices(this IServiceCollection sc)
    {
        sc.AddServicesWithAttributes();

        return sc;
    }
}

public class QAContext : DrnContext<QAContext>
{
    public QAContext(DbContextOptions<QAContext> options) : base(options)
    {
    }

    public QAContext() : base(null)
    {
    }

    public DbSet<User> Users { get; set; }
    public DbSet<Question> Questions { get; set; }
    public DbSet<Answer> Answers { get; set; }
    public DbSet<QuestionComment> Comments { get; set; }
    public DbSet<Category> Categories { get; set; }
    public DbSet<Tag> Tags { get; set; }
}

Global Usings

global using DRN.Framework.EntityFramework.Context;
global using Microsoft.EntityFrameworkCore;
global using DRN.Framework.Utils.DependencyInjection;

Commit Info

Author: Duran Serkan KILIÇ
Date: 2024-01-07 23:00:51 +0300
Hash: a0016a24bdae4ee3277c5bf82bf36f7cd57bd0a3

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on DRN.Framework.EntityFramework:

Package Downloads
DRN.Framework.Testing

DRN.Framework.Testing package encapsulates testing dependencies and provides practical, effective helpers such as resourceful data attributes and test context. This package enables a new encouraging testing technique called as DTT(Duran's Testing Technique). With DTT, any developer can write clean and hassle-free unit and integration tests without complexity. ## Commit Info Author: Duran Serkan KILIÇ Date: 2025-06-29 14:24:23 +0300 Hash: 62505c5a2da0b49046f342d4fcf087de0adc68e3

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.0-preview022 13 6/29/2025
0.7.0-preview021 107 6/23/2025
0.7.0-preview020 97 5/31/2025
0.7.0-preview019 151 3/23/2025
0.7.0-preview018 102 3/2/2025
0.7.0-preview017 105 2/23/2025
0.7.0-preview016 96 2/22/2025
0.7.0-preview015 92 2/21/2025
0.7.0-preview014 103 2/20/2025
0.7.0-preview013 105 2/9/2025
0.7.0-preview012 99 2/8/2025
0.7.0-preview011 102 2/2/2025
0.7.0-preview010 84 1/20/2025
0.7.0-preview009 81 1/19/2025
0.7.0-preview008 81 1/16/2025
0.7.0-preview007 93 12/29/2024
0.7.0-preview006 94 12/23/2024
0.7.0-preview005 85 11/27/2024
0.7.0-preview004 100 11/23/2024
0.7.0-preview003 95 11/20/2024
0.7.0-preview002 92 11/17/2024
0.7.0-preview001 92 11/14/2024
0.6.0 128 11/10/2024
0.6.0-preview002 103 11/10/2024
0.6.0-preview001 103 11/10/2024
0.5.1-preview002 95 9/30/2024
0.5.1-preview001 94 9/22/2024
0.5.0 136 8/30/2024
0.5.0-preview011 99 8/30/2024
0.5.0-preview010 125 8/25/2024
0.5.0-preview009 117 8/8/2024
0.5.0-preview008 114 8/7/2024
0.5.0-preview007 83 8/2/2024
0.5.0-preview006 79 7/30/2024
0.5.0-preview005 108 7/27/2024
0.5.0-preview004 100 7/15/2024
0.5.0-preview003 120 6/6/2024
0.5.0-preview002 111 6/5/2024
0.5.0-preview001 105 6/4/2024
0.4.0 109 5/19/2024
0.4.0-preview006 89 5/19/2024
0.4.0-preview005 113 5/12/2024
0.4.0-preview004 108 5/12/2024
0.4.0-preview003 114 5/11/2024
0.4.0-preview002 132 5/8/2024
0.4.0-preview001 121 5/5/2024
0.3.1-preview001 108 4/26/2024
0.3.0 126 4/23/2024
0.3.0-preview002 105 4/23/2024
0.3.0-preview001 117 4/23/2024
0.2.2-preview010 123 4/11/2024
0.2.2-preview009 105 3/18/2024
0.2.2-preview008 102 3/18/2024
0.2.2-preview007 118 3/16/2024
0.2.2-preview006 96 3/11/2024
0.2.2-preview005 103 3/10/2024
0.2.2-preview004 102 3/10/2024
0.2.2-preview003 150 1/22/2024
0.2.2-preview002 116 1/18/2024
0.2.2-preview001 120 1/14/2024
0.2.1 208 1/7/2024
0.2.0 125 12/31/2023
0.2.0-preview009 96 12/31/2023
0.2.0-preview008 97 12/30/2023
0.2.0-preview007 104 12/28/2023
0.2.0-preview006 97 12/27/2023
0.2.0-preview005 97 12/25/2023
0.2.0-preview004 107 12/23/2023
0.2.0-preview003 105 12/20/2023
0.2.0-preview002 95 12/19/2023

Not every version includes changes, features or bug fixes. This project can increment version to keep consistency with other DRN.Framework projects.

## Version 0.2.0

### Breaking Changes

### New Features
* DrnContext added
   * Implemented IDesignTimeDbContextFactory to enable migrations from dbContext defining projects.
   * Implemented IDesignTimeServices to support multi context projects with default output directory in the context specific folder.
   * Uses HasDrnContextServiceCollectionModule to automatic registration with AddServicesWithAttributes service collection extension method.
   * Uses context name (typeof(TContext).Name) as connection string key by convention.
   * Enables DRN.Framework.Testing to create easy and effective integration tests with conventions and automatic registrations.

### Bug Fixes  
 
## Commit Info  
Author: Duran Serkan KILIÇ  
Date: 2024-01-07 23:00:51 +0300  
Hash: a0016a24bdae4ee3277c5bf82bf36f7cd57bd0a3