From 1855e20398c93decda94236b31020b649863fd93 Mon Sep 17 00:00:00 2001 From: Mads Larsen Date: Sun, 19 Jan 2025 20:47:24 +0100 Subject: [PATCH] set Copyright date --- .../EntityFrameworkTestExtensions.cs | 2 +- .../InMemory/Infrastructure/IndexingInMemoryTable.cs | 2 +- .../MsSql/EfMsSqlEventStoreTests.cs | 2 +- .../MsSql/EfMsSqlReadStoreIncludeTests.cs | 2 +- .../MsSql/EfMsSqlReadStoreTests.cs | 2 +- .../MsSql/EfMsSqlSnapshotTests.cs | 2 +- .../MsSql/IncludeTests/Address.cs | 2 +- .../MsSql/IncludeTests/AddressId.cs | 2 +- .../MsSql/IncludeTests/Commands/AddAddressCommand.cs | 2 +- .../MsSql/IncludeTests/Commands/CreatePersonCommand.cs | 2 +- .../MsSql/IncludeTests/Events/AddressAddedEvent.cs | 2 +- .../MsSql/IncludeTests/Events/PersonCreatedEvent.cs | 2 +- .../MsSql/IncludeTests/Person.cs | 2 +- .../MsSql/IncludeTests/PersonAggregate.cs | 2 +- .../MsSql/IncludeTests/PersonId.cs | 2 +- .../MsSql/IncludeTests/Queries/PersonGetQuery.cs | 2 +- .../MsSql/IncludeTests/ReadModels/AddressReadModelEntity.cs | 2 +- .../MsSql/IncludeTests/ReadModels/PersonReadModelEntity.cs | 2 +- .../PostgreSql/EfPostgreSqlEventStoreTests.cs | 2 +- .../PostgreSql/EfPostgreSqlReadStoreTests.cs | 2 +- .../PostgreSql/EfPostgreSqlSnapshotTests.cs | 2 +- .../PostgreSql/PostgreSqlDbContextProvider.cs | 2 +- .../EntityFrameworkConfiguration.cs | 2 +- .../EventFlow.EntityFramework.csproj | 2 +- .../EventStores/EntityFrameworkEventPersistence.cs | 6 +----- Source/EventFlow.EntityFramework/EventStores/EventEntity.cs | 2 +- .../Extensions/DbContextExtensions.cs | 2 +- .../EventFlowOptionsEntityFrameworkEventStoreExtensions.cs | 2 +- .../Extensions/EventFlowOptionsEntityFrameworkExtensions.cs | 2 +- .../EventFlowOptionsEntityFrameworkReadStoreExtensions.cs | 2 +- .../EventFlowOptionsEntityFrameworkSnapshotExtensions.cs | 2 +- .../ReadStores/EntityFrameworkReadModelStore.cs | 2 +- .../SnapshotStores/EntityFrameworkSnapshotPersistence.cs | 2 +- .../SnapshotStores/SnapshotEntity.cs | 2 +- 34 files changed, 34 insertions(+), 38 deletions(-) diff --git a/Source/EventFlow.EntityFramework.Tests/EntityFrameworkTestExtensions.cs b/Source/EventFlow.EntityFramework.Tests/EntityFrameworkTestExtensions.cs index b29936bdc..b7b77e57a 100644 --- a/Source/EventFlow.EntityFramework.Tests/EntityFrameworkTestExtensions.cs +++ b/Source/EventFlow.EntityFramework.Tests/EntityFrameworkTestExtensions.cs @@ -59,7 +59,7 @@ public static IEventFlowOptions ConfigureForReadStoreTest(this IEventFlowOptions public static IEventFlowOptions ConfigureForReadStoreIncludeTest(this IEventFlowOptions options) { return options - .UseEntityFrameworkReadModel(configuration => configuration.Include(x => x.Addresses)) + .UseEntityFrameworkReadModel(cfg => cfg.Include(x => x.Addresses)) .AddQueryHandlers(typeof(PersonGetQueryHandler)); } } diff --git a/Source/EventFlow.EntityFramework.Tests/InMemory/Infrastructure/IndexingInMemoryTable.cs b/Source/EventFlow.EntityFramework.Tests/InMemory/Infrastructure/IndexingInMemoryTable.cs index bd4483546..935095b39 100644 --- a/Source/EventFlow.EntityFramework.Tests/InMemory/Infrastructure/IndexingInMemoryTable.cs +++ b/Source/EventFlow.EntityFramework.Tests/InMemory/Infrastructure/IndexingInMemoryTable.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlEventStoreTests.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlEventStoreTests.cs index 831bd6486..0adf6d749 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlEventStoreTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlEventStoreTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreIncludeTests.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreIncludeTests.cs index e9f0e69aa..5ea41efd0 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreIncludeTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreIncludeTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreTests.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreTests.cs index 7df4348b1..cd6720e47 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlReadStoreTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlSnapshotTests.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlSnapshotTests.cs index 9dbe101c6..c2a3a6aa3 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlSnapshotTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/EfMsSqlSnapshotTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Address.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Address.cs index c1e971a61..1a67aae26 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Address.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Address.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/AddressId.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/AddressId.cs index 70fc3d130..b211de54d 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/AddressId.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/AddressId.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/AddAddressCommand.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/AddAddressCommand.cs index 81aa0d1c3..7330bc248 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/AddAddressCommand.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/AddAddressCommand.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/CreatePersonCommand.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/CreatePersonCommand.cs index f84933cac..5f0f1d685 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/CreatePersonCommand.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Commands/CreatePersonCommand.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/AddressAddedEvent.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/AddressAddedEvent.cs index 7ac2ea37a..0d41ac1f3 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/AddressAddedEvent.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/AddressAddedEvent.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/PersonCreatedEvent.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/PersonCreatedEvent.cs index 9396d35f5..542aecd43 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/PersonCreatedEvent.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Events/PersonCreatedEvent.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Person.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Person.cs index 2cb965df6..12d088f30 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Person.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Person.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonAggregate.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonAggregate.cs index a54f7ad88..a85e62597 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonAggregate.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonAggregate.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonId.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonId.cs index 59a0260bb..fe57fd88f 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonId.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/PersonId.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Queries/PersonGetQuery.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Queries/PersonGetQuery.cs index 15be60f92..0eabc29aa 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Queries/PersonGetQuery.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/Queries/PersonGetQuery.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/AddressReadModelEntity.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/AddressReadModelEntity.cs index 5c2b9f045..7bdf18ddb 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/AddressReadModelEntity.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/AddressReadModelEntity.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/PersonReadModelEntity.cs b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/PersonReadModelEntity.cs index eb86ce690..002cf892d 100644 --- a/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/PersonReadModelEntity.cs +++ b/Source/EventFlow.EntityFramework.Tests/MsSql/IncludeTests/ReadModels/PersonReadModelEntity.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlEventStoreTests.cs b/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlEventStoreTests.cs index e7fcdf722..ea3aed036 100644 --- a/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlEventStoreTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlEventStoreTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlReadStoreTests.cs b/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlReadStoreTests.cs index d7d48bdd4..3eee93820 100644 --- a/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlReadStoreTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlReadStoreTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlSnapshotTests.cs b/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlSnapshotTests.cs index a8c7ed40e..7c2491b41 100644 --- a/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlSnapshotTests.cs +++ b/Source/EventFlow.EntityFramework.Tests/PostgreSql/EfPostgreSqlSnapshotTests.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework.Tests/PostgreSql/PostgreSqlDbContextProvider.cs b/Source/EventFlow.EntityFramework.Tests/PostgreSql/PostgreSqlDbContextProvider.cs index 06cc63f0d..4cd91b24d 100644 --- a/Source/EventFlow.EntityFramework.Tests/PostgreSql/PostgreSqlDbContextProvider.cs +++ b/Source/EventFlow.EntityFramework.Tests/PostgreSql/PostgreSqlDbContextProvider.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/EntityFrameworkConfiguration.cs b/Source/EventFlow.EntityFramework/EntityFrameworkConfiguration.cs index a3c5de877..e3ed8a2df 100644 --- a/Source/EventFlow.EntityFramework/EntityFrameworkConfiguration.cs +++ b/Source/EventFlow.EntityFramework/EntityFrameworkConfiguration.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/EventFlow.EntityFramework.csproj b/Source/EventFlow.EntityFramework/EventFlow.EntityFramework.csproj index 9f653616e..cd664c651 100644 --- a/Source/EventFlow.EntityFramework/EventFlow.EntityFramework.csproj +++ b/Source/EventFlow.EntityFramework/EventFlow.EntityFramework.csproj @@ -8,7 +8,7 @@ EventFlow.EntityFramework Frank Ebersoll Rasmus Mikkelsen - Copyright (c) Rasmus Mikkelsen 2015 - 2022 + Copyright (c) Rasmus Mikkelsen 2015 - 2025 Entity Framework Core support for EventFlow CQRS ES event sourcing EF Entity Framework Core git diff --git a/Source/EventFlow.EntityFramework/EventStores/EntityFrameworkEventPersistence.cs b/Source/EventFlow.EntityFramework/EventStores/EntityFrameworkEventPersistence.cs index 4ea76c41a..e3c9db7b0 100644 --- a/Source/EventFlow.EntityFramework/EventStores/EntityFrameworkEventPersistence.cs +++ b/Source/EventFlow.EntityFramework/EventStores/EntityFrameworkEventPersistence.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -21,7 +21,6 @@ // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. using System; using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; @@ -35,10 +34,7 @@ namespace EventFlow.EntityFramework.EventStores; -[SuppressMessage("Code Fix", "Sc0023:Async Suffix")] -#pragma warning disable Wintellect011 public class EntityFrameworkEventPersistence : IEventPersistence -#pragma warning restore Wintellect011 where TDbContext : DbContext { private readonly IDbContextProvider _contextProvider; diff --git a/Source/EventFlow.EntityFramework/EventStores/EventEntity.cs b/Source/EventFlow.EntityFramework/EventStores/EventEntity.cs index f49451eea..b5c53e651 100644 --- a/Source/EventFlow.EntityFramework/EventStores/EventEntity.cs +++ b/Source/EventFlow.EntityFramework/EventStores/EventEntity.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/Extensions/DbContextExtensions.cs b/Source/EventFlow.EntityFramework/Extensions/DbContextExtensions.cs index 396b82882..06186d0a8 100644 --- a/Source/EventFlow.EntityFramework/Extensions/DbContextExtensions.cs +++ b/Source/EventFlow.EntityFramework/Extensions/DbContextExtensions.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkEventStoreExtensions.cs b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkEventStoreExtensions.cs index aee6748af..72f078396 100644 --- a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkEventStoreExtensions.cs +++ b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkEventStoreExtensions.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkExtensions.cs b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkExtensions.cs index 34bc429bb..dbf28bce5 100644 --- a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkExtensions.cs +++ b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkExtensions.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkReadStoreExtensions.cs b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkReadStoreExtensions.cs index 72a1dbe5b..55b23f640 100644 --- a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkReadStoreExtensions.cs +++ b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkReadStoreExtensions.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkSnapshotExtensions.cs b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkSnapshotExtensions.cs index 4ffdabb91..b112d19df 100644 --- a/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkSnapshotExtensions.cs +++ b/Source/EventFlow.EntityFramework/Extensions/EventFlowOptionsEntityFrameworkSnapshotExtensions.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/ReadStores/EntityFrameworkReadModelStore.cs b/Source/EventFlow.EntityFramework/ReadStores/EntityFrameworkReadModelStore.cs index 62a9da952..6d51df7bd 100644 --- a/Source/EventFlow.EntityFramework/ReadStores/EntityFrameworkReadModelStore.cs +++ b/Source/EventFlow.EntityFramework/ReadStores/EntityFrameworkReadModelStore.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/SnapshotStores/EntityFrameworkSnapshotPersistence.cs b/Source/EventFlow.EntityFramework/SnapshotStores/EntityFrameworkSnapshotPersistence.cs index 1d0148ce9..6773d83df 100644 --- a/Source/EventFlow.EntityFramework/SnapshotStores/EntityFrameworkSnapshotPersistence.cs +++ b/Source/EventFlow.EntityFramework/SnapshotStores/EntityFrameworkSnapshotPersistence.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/Source/EventFlow.EntityFramework/SnapshotStores/SnapshotEntity.cs b/Source/EventFlow.EntityFramework/SnapshotStores/SnapshotEntity.cs index 47155a3a6..d6e1f3941 100644 --- a/Source/EventFlow.EntityFramework/SnapshotStores/SnapshotEntity.cs +++ b/Source/EventFlow.EntityFramework/SnapshotStores/SnapshotEntity.cs @@ -1,6 +1,6 @@ // The MIT License (MIT) // -// Copyright (c) 2015-2024 Rasmus Mikkelsen +// Copyright (c) 2015-2025 Rasmus Mikkelsen // https://github.com/eventflow/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of