ksqlDB.RestApi.Client-DotNet
ksqlDB.RestApi.Client-DotNet copied to clipboard
ksqlDb.RestApi.Client is a C# LINQ-enabled client API for issuing and consuming ksqlDB push and pull queries and executing statements.
I'm not sure I'm even using the method as intended, because I don't understand the documentation, such as it is and what there is of it. It took me a...
Dear Tomas, you overwrite the EndpointType.Query with EndpointType.Ksql within the constructor of the KSqlDbStatement class. Using ksql it is possible to do select queries with statements on streams and tables,...
Hi, How to delete records from Kafka table using Kafka.DotNet.ksqlDB? Is there any documentation to refer for sample implementation? Please suggest.
I am writing a GraphQL app where a subscription feeds events from multiple push queries into a single stream for a web app to consume. Below is an example of...
#66 - added `ModelBuilder` to **configure the model**, allowing the customization of **keys** - added `FieldTypeBuilderExtensions` for configuring **decimal types** - added `IFromItemTypeConfiguration` to apply model-related configurations using the provided...
**Describe the bug** When a field/property has type `decimal` the statementgenerator maps the type to `DECIMAL` instead of `DECIMAL(precision,scale)` where precision and scale must be some integer number. **To Reproduce**...
This proposal suggests implementing the "Ignore" method from the model builder fluent API to manage the exclusion of specific properties during code generation. The "Ignore" method allows us to define...
Hi, I have a use case where I need to reuse a `pull query` for **multiple topics** with different types of columns to be filtered by. My requirement is that...