Interface IKafkaTable
- Namespace
- MASES.EntityFrameworkCore.KNet.Storage.Internal
- Assembly
- MASES.EntityFrameworkCore.KNet.dll
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public interface IKafkaTable : IEntityTypeProducer, IDisposable
- Inherited Members
Properties
Cluster
The referring IKafkaCluster
IKafkaCluster Cluster { get; }
Property Value
Rows
Current rows
IEnumerable<object?[]> Rows { get; }
Property Value
Methods
BumpValueGenerators(object?[])
Bumps values
void BumpValueGenerators(object?[] row)
Parameters
row
object[]
Create(IUpdateEntry)
Creates a new row
IKafkaRowBag Create(IUpdateEntry entry)
Parameters
entry
IUpdateEntry
Returns
Delete(IUpdateEntry)
Deletes a row
IKafkaRowBag Delete(IUpdateEntry entry)
Parameters
entry
IUpdateEntry
Returns
GetIntegerValueGenerator<TProperty>(IProperty, IReadOnlyList<IKafkaTable>)
KafkaIntegerValueGenerator<TProperty> GetIntegerValueGenerator<TProperty>(IProperty property, IReadOnlyList<IKafkaTable> tables)
Parameters
property
IPropertytables
IReadOnlyList<IKafkaTable>
Returns
- KafkaIntegerValueGenerator<TProperty>
Type Parameters
TProperty
SnapshotRows()
Create snapshot
IReadOnlyList<object?[]> SnapshotRows()
Returns
Update(IUpdateEntry)
Updates a row
IKafkaRowBag Update(IUpdateEntry entry)
Parameters
entry
IUpdateEntry