edamascus

Results 9 comments of edamascus

Converting the `value` retrieved from the `values` array to a string solved the issue and the SQL was translated properly: ``` string[] values = new[] {"one", "two", "three", "four"}; var...

@maumar, the current version of EF Core I am using is `8.0.0`. I haven't updated to `8.0.4`, as I checked the [latest release notes](https://github.com/dotnet/efcore/releases/tag/v8.0.4) and did not find anything directly...

@maumar, I had to simplify the actual code which I am having trouble with in order to report the issue. When declaring the `value` variable I am doing a null...

@roji, my fault for missing out the important part which caused the issue. The problem exists in versions `8.0.0` and `8.0.4` with the following query (which includes the ternary operator):...

Not sure if this is related. But the same code fails with the following exception when `item.value` is actually null (it works well when it is not null): > Microsoft.Data.SqlClient.SqlException...

I was trying something similar in my project (but in a basic form). I created a `breakpoints.ts` file with the following exported constants: ```tsx export const SM = '@media (min-width:...

Thank you @nmn for the clarification. I am just curious, are media queries defined statically within every component in large projects that currently use StyleX? Regarding the proposed feature, I...

Based on the examples in the proposal, the `media()` function may be used as follows: ```tsx export const media = stylex.defineConsts({ sm: stylex.types.media('(min-width: 640px) and (max-width: 767px)'), md: stylex.types.media('(min-width: 768px)...

I used `vite-plugin-stylex` v0.4.1 with a React spa project with Vite and it worked successfully in dev and production. However, since I updated StyleX to v0.4.1, I am getting the...