Bouke Haarsma

Results 250 comments of Bouke Haarsma

That doesn't generate the same query, which can be compared like so: ```sql select (websearch_to_tsquery('rojan')::text || ':*')::tsquery, websearch_to_tsquery('rojan:*'); ``` desired|suggestion -|- `'rojan':*`|`'rojan'` So what I'm trying to do is parse...

Thanks! However to be equivalent it needs to be `EF.Functions.ToTsQuery` instead of `EF.Functions.PhraseToTsQuery`. Or even more ugly by doing an additional set of casts: ```c# (NpgsqlTypes.NpgsqlTsQuery)(object)((string)(object)EF.Functions.WebSearchToTsQuery(q) + ":*") ``` Yields:...

`ToTsQuery` can replace some of the casts, so the query from above becomes: ```c# EF.Functions.ToTsQuery((string)(object)EF.Functions.WebSearchToTsQuery(q) + ":*") ``` Ideally I wouldn't need to cast `NpgsqlTsQuery` through `object` to `string` just...

> There is currently interest in improving null reference behavior in the library and making use of null reference types from C#8. Issue #487 is the most recent item on...

In my application code, I'm interested in `TenantInfo` only. So having to go through the `MultiTenantContext` property is mostly noise in my code anyway. So I'm all for having TenantInfo...

Ugh stale bot 👎.

Ugh stale bot 👎.

@roji I missed your reply (normally this view auto-updates) and have deleted my original comment as re-reading the comment indeed didn't suggest this exact use-case. Thank you for confirming the...

In order to achieve this, you need to host Blazor at a path that includes the tenant. For example: ``` endpoints.MapBlazorHub("{tenant}/_blazor"); ```

I think what you want is tracked by #13. There’s currently no support for that, but I would welcome a PR for that!