Epam.Kafka.PubSub.EntityFrameworkCore
2.5.260
Prefix Reserved
dotnet add package Epam.Kafka.PubSub.EntityFrameworkCore --version 2.5.260
NuGet\Install-Package Epam.Kafka.PubSub.EntityFrameworkCore -Version 2.5.260
<PackageReference Include="Epam.Kafka.PubSub.EntityFrameworkCore" Version="2.5.260" />
<PackageVersion Include="Epam.Kafka.PubSub.EntityFrameworkCore" Version="2.5.260" />
<PackageReference Include="Epam.Kafka.PubSub.EntityFrameworkCore" />
paket add Epam.Kafka.PubSub.EntityFrameworkCore --version 2.5.260
#r "nuget: Epam.Kafka.PubSub.EntityFrameworkCore, 2.5.260"
#:package Epam.Kafka.PubSub.EntityFrameworkCore@2.5.260
#addin nuget:?package=Epam.Kafka.PubSub.EntityFrameworkCore&version=2.5.260
#tool nuget:?package=Epam.Kafka.PubSub.EntityFrameworkCore&version=2.5.260
Epam.Kafka.PubSub.EntityFrameworkCore
About
Epam.Kafka.PubSub.EntityFrameworkCore package provides entity framework core implementation for key abstractions defined in Epam.Kafka.PubSub.
Key Features
- Base abstract classes
DbContextSubscriptionHandler<TKey, TValue, TContext>,DbContextEntitySubscriptionHandler<TKey, TValue, TContext TEntity>to help with implementation ofISubscriptionHandler<TKey, TValue>that read data from KAFKA topics and save it to database usingDbContext. - Default implementation of
IExternalOffsetsStoragethat store offsets in database viaDbContext.TryAddKafkaDbContextStateextension method to register it inIServiceCollection. - Base abstract classes
DbContextPublicationHandler<TKey, TValue, TEntity, TContext>andDbContextEntityPublicationHandler<TKey, TValue, TEntity, TContext>to help with implementation ofIPublicationHandler<TKey, TValue>that read data from database usingDbContextand publish it to kafka topics.
How to Use
Store subscription offsets
Prepare context.
public class SampleDbContext : DbContext, IKafkaStateDbContext
{
public DbSet<KafkaTopicState> KafkaTopicStates => this.Set<KafkaTopicState>();
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.AddKafkaState();
}
}
Register services and setup topic partition assignment and offsets storage for subscription.
services.TryAddKafkaDbContextState<SampleDbContext>();
KafkaBuilder kafkaBuilder = services.AddKafka();
kafkaBuilder.AddSubscription<string, KafkaEntity, SubscriptionHandlerSample>("Sample")
.WithSubscribeAndExternalOffsets();
Publish data from database to kafka
Optionally derive entity from IKafkaPublicationEntity interface to use default state management.
public class SamplePublicationEntity : IKafkaPublicationEntity
{
public KafkaPublicationState KafkaPubState { get; set; }
public DateTime KafkaPubNbf { get; set; }
}
Create publication handler derived from DbContextEntityPublicationHandler<TKey, TValue, TEntity, TContext> for entity with default state management or from DbContextPublicationHandler<TKey, TValue, TEntity, TContext> for custom state management.
Setup publication
KafkaBuilder kafkaBuilder = services.AddKafka();
kafkaBuilder.AddPublication<string, KafkaEntity, SamplePublicationHandler>("Sample");
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Epam.Kafka.PubSub (>= 2.5.260)
- Microsoft.EntityFrameworkCore (>= 3.1.32)
-
net6.0
- Epam.Kafka.PubSub (>= 2.5.260)
- Microsoft.EntityFrameworkCore (>= 6.0.36)
-
net8.0
- Epam.Kafka.PubSub (>= 2.5.260)
- Microsoft.EntityFrameworkCore (>= 8.0.11)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.5.260 | 3,088 | 6/23/2025 |
| 2.5.251-rc | 244 | 6/23/2025 |
| 2.5.246-rc | 155 | 2/25/2025 |
| 2.5.244 | 1,478 | 2/12/2025 |
| 2.5.241-rc | 189 | 2/12/2025 |
| 2.5.240-rc | 155 | 2/11/2025 |
| 2.5.239-rc | 205 | 2/10/2025 |
| 2.5.237-rc | 168 | 2/7/2025 |
| 2.5.236-rc | 188 | 2/7/2025 |
| 2.5.233 | 1,773 | 2/7/2025 |
| 2.5.229 | 159 | 2/6/2025 |
| 2.5.225-rc | 164 | 2/6/2025 |
| 2.5.224-rc | 164 | 2/6/2025 |
| 2.5.219-rc | 166 | 2/4/2025 |
| 2.5.218-rc | 157 | 2/4/2025 |
| 2.5.215-rc | 177 | 2/3/2025 |
| 2.5.214-rc | 151 | 2/3/2025 |
| 2.5.213-rc | 163 | 1/31/2025 |
| 2.5.210-rc | 214 | 1/30/2025 |
| 2.5.209-rc | 158 | 1/29/2025 |