aboutsummaryrefslogtreecommitdiff
path: root/plugins/VNLib.Plugins.Essentials.Content.Routing
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-02-14 14:44:04 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-02-14 14:44:04 -0500
commit0d3612601ee2ff42cc72c9a4e29de66ea9cdc3fd (patch)
treee3f69f017a2ec80088fc1966a5efa88a51a4466a /plugins/VNLib.Plugins.Essentials.Content.Routing
parentdf7dc615532d3441f527374d18664c1a5a336de6 (diff)
Squashed commit of the following:
commit 2735201257cd22981f96b54b4a6120f44cb93c4c Author: vnugent <public@vaughnnugent.com> Date: Mon Feb 12 20:26:57 2024 -0500 refactor: update latest sql extensions commit eb3fea8181344e3550869f92b9643439053f79fe Author: vnugent <public@vaughnnugent.com> Date: Sun Feb 4 01:30:25 2024 -0500 submit pending changes
Diffstat (limited to 'plugins/VNLib.Plugins.Essentials.Content.Routing')
-rw-r--r--plugins/VNLib.Plugins.Essentials.Content.Routing/src/Model/RoutingContext.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Model/RoutingContext.cs b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Model/RoutingContext.cs
index 1a8d82a..56fbc25 100644
--- a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Model/RoutingContext.cs
+++ b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Model/RoutingContext.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2023 Vaughn Nugent
+* Copyright (c) 2024 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Plugins.Essentials.Content.Routing
@@ -22,8 +22,6 @@
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
-using System;
-
using Microsoft.EntityFrameworkCore;
using VNLib.Plugins.Extensions.Data;
@@ -31,7 +29,7 @@ using VNLib.Plugins.Extensions.Loading.Sql;
namespace VNLib.Plugins.Essentials.Content.Routing.Model
{
- internal sealed class RoutingContext : TransactionalDbContext, IDbTableDefinition
+ internal sealed class RoutingContext : DBContextBase, IDbTableDefinition
{
public DbSet<Route> Routes { get; set; }