rodrigo-web-developer

Results 8 comments of rodrigo-web-developer

Is there a prevision of when and which version it will be added? By the way, I'm using NHibernate + OData, so I need the $filter=enumProperty has 'enumValue' to work...

If you're using .NET API, you need to ensure that .UseAuthentication() is after .UseCors(), because it is a cors issue that breaks the pipeline before the authorization (where the step...

Same problem with codex-cli `0.27.0`. There's not sense on confirming every shell command. Makes codex an useless extension because you still need a manual interaction. Even if I set approvals...

I think it's a your plain SQL string that contains colon (:). Because NHibernate will handle as parameters. It is the expected behavior. You can see more in docs: https://nhibernate.info/doc/nhibernate-reference/batch.html...

@dimako it seems that depends on query NHibernate will perform as parameter or not. ```cs using (var session = NHibernateHelper.OpenSession()) { session.CreateSQLQuery(@" INSERT INTO Table (description) VALUES (N' --'); INSERT...

I had problems before with ExecuteUpdate() because I work with PostgreSQL and it has a CAST operator `::`, so it is usual to have colon outside quotes like `INSERT INTO...

@NandhaSaiS I had a similiar issue, can you provide the class definitions?

@NandhaSaiS, sorry, but your code results in compiling errors. What is the definition of TowerOrderItemMap class and what the definition of SubOrderItem class? I tried to figure out what is...