Thomas Pigarelli

Results 7 issues of Thomas Pigarelli

The current signature of `HasGeneratedTsVectorColumn` is: ```c-sharp public static EntityTypeBuilder HasGeneratedTsVectorColumn( this EntityTypeBuilder entityTypeBuilder, Expression tsVectorPropertyExpression, string config, Expression includeExpression ) where TEntity : class; ``` and its usage is...

enhancement

This can be reproduced as follows: - Open Google Maps - Set some kind of reference on the map - Record yourself swipe/move around the map and then going back...

enhancement

Is `KeyboardAwareFlatList` not typed? I'm using it like: ```typescript { ... } /> ``` Even though `data` is typed as `Item[]`, `item` is `any`. What am I doing wrong? Shouldn't...

Hello, what's the proper way to deal with `NonNull` not being `T`? Let's assume that you have a resolver like: ``` public async Task AllXs(...) { IEnumerable list = await...

question

**Is your feature request related to a problem? Please describe.** Persisted queries aim at: - Improve the performance of a GraphQL server - Whitelist specific queries - Reduce bandwidth usage...

enhancement

**Info** Using `kysely-ctl` v0.9.0. **Issue** I'm trying to run `kysely migrate` on a deploy command in a read-only file system environment (it's the Digital Ocean PaaS). I'm getting this error:...

If you have a migration 0001 with this: ``` export async function up(db: Kysely): Promise { await db.schema.createType("some_enum").asEnum(["value_1", "value_2"]).execute(); } ``` and a migration 0002 with this: ``` export async...

enhancement
migrations