Skip to content

Commit

Permalink
derive DbContext from DbContextBase
Browse files Browse the repository at this point in the history
  • Loading branch information
basilkot committed Dec 13, 2023
1 parent c32ff00 commit 3ccf664
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
using EntityFrameworkCore.Triggers;
using Microsoft.EntityFrameworkCore;
using VirtoCommerce.EventBusModule.Data.Model;
using VirtoCommerce.Platform.Data.Infrastructure;

namespace VirtoCommerce.EventBusModule.Data.Repositories
{
public class EventBusDbContext : DbContextWithTriggers
public class EventBusDbContext : DbContextBase
{
protected const int _idLength = 128;
public EventBusDbContext(DbContextOptions<EventBusDbContext> options)
Expand Down

0 comments on commit 3ccf664

Please sign in to comment.