tomasfabian / ksqlDB.RestApi.Client-DotNet

ksqlDb.RestApi.Client is a C# LINQ-enabled client API for issuing and consuming ksqlDB push and pull queries and executing statements.
MIT License
93 stars 24 forks source link

Apply the Ignore method from the model builder fluent API to configure the exclusion of certain properties during code generation #71

Closed tomasfabian closed 2 months ago

tomasfabian commented 2 months ago

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 properties within a model that should not be included in the generated codebase, providing more granular control over the final output.

During code generation, it's common to encounter scenarios where certain properties within a model should be excluded from the generated code. This exclusion might be necessary due to various reasons such as security concerns, performance optimization, or to comply with specific architectural requirements.