You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Properties of en entity can be marked as a [HEADER](https://docs.ksqldb.io/en/latest/reference/sql/data-definition/#headers) with the model builder's FLUENT API as demonstrated below:
150
+
Properties of en entity can be marked as a [HEADER](https://docs.ksqldb.io/en/latest/reference/sql/data-definition/#headers) with the model builder's fluent API as demonstrated below:
151
151
152
152
```C#
153
153
usingksqlDb.RestApi.Client.FluentAPI.Builders;
@@ -176,12 +176,12 @@ CREATE STREAM IF NOT EXISTS PocoWithHeaders (
176
176
) WITH ( KAFKA_TOPIC='PocoWithHeader', VALUE_FORMAT='Json', PARTITIONS='1', REPLICAS='3' );
177
177
```
178
178
179
-
The `WithHeader` function within the FLUENT API takes precedence over the `HeadersAttribute`.
179
+
The `WithHeader` function within the fluent API takes precedence over the `HeadersAttribute`.
180
180
181
181
### WithHeaders
182
182
**v5.1.0**
183
183
184
-
Properties of en entity can be marked as a [HEADERS](https://docs.ksqldb.io/en/latest/reference/sql/data-definition/#headers) with the model builder's FLUENT API as demonstrated below:
184
+
Properties of en entity can be marked as a [HEADERS](https://docs.ksqldb.io/en/latest/reference/sql/data-definition/#headers) with the model builder's fluent API as demonstrated below:
185
185
186
186
```C#
187
187
usingksqlDb.RestApi.Client.Metadata;
@@ -222,13 +222,14 @@ CREATE STREAM Movie (
222
222
) WITH ( KAFKA_TOPIC='MyMovie', VALUE_FORMAT='Json', PARTITIONS='1', REPLICAS='1' );
223
223
```
224
224
225
-
The `WithHeaders` function within the FLUENT API takes precedence over the `HeadersAttribute`.
225
+
The `WithHeaders` function within the fluent API takes precedence over the `HeadersAttribute`.
226
226
227
227
### HasColumnName
228
228
**v6.1.0**
229
+
229
230
The `HasColumnName` function is employed during JSON deserialization and code generation, particularly in tasks like crafting CREATE STREAM or INSERT INTO statements.
230
231
231
-
The below code demonstrates how to use the `HasColumnName` method in the Fluent API to override the property name `Description` to `Desc` during code generation:
232
+
The below code demonstrates how to use the `HasColumnName` method in the fluent API to override the property name `Description` to `Desc` during code generation:
0 commit comments