Hoang Le Ngoc

Results 2 issues of Hoang Le Ngoc

Hello, I try to get list `process` as follow: ``` processes = await crud_processes.get_multi_joined(**params) ``` I also define params like this: ``` params = { "db": db, "is_deleted": False, "schema_to_select":...

I have a table called 'Client' as shown below: ``` class Client(Base): __tablename__ = "client" id: Mapped[int] = mapped_column("id", autoincrement=True, nullable=False, unique=True, primary_key=True, init=False) name: Mapped[str] = mapped_column(String(50)) contact: Mapped[str]...

enhancement