satodai
satodai
hello. For tables that have columns for logical deletion, as shown below, there is a use case where logical deletion is required. ```sql CREATE TABLE user ( id INTEGER, name...
hello. Looking at the CRUDGenerator's `__init__()` argument, I noticed that there is no property to specify the response_class. I want to use a fast JSON conversion library like [ORJson](https://github.com/ijl/orjson), what...
hello. The following code tries to use SubContainer to perform dependency injection into a Service, but this code cannot be executed with the exception "exception: no description". ```python from dependency_injector...
hi. Sorry for the confusing question. I want to register only the interface in the Container without having an implementation. Specifically, it is as follows: ```python import abc from dependency_injector...
Hello. As the title suggests, what should I do with the definition of providers.Singleton that instantiates at the same time as fastapi starts! I want to generate the following "manager"...