incompletude
incompletude
> I came up with the following that seems to work nicely. > > `fixture.module.ts` > > ```js > @Module({ > imports: [TypeOrmModule.forFeature([FixtureRepository])], > providers: [FixtureService, FixtureLoaders, FixtureResolvers], > })...
Hello, Any news on this? How can i validate or null or enum? This doesn't work. ``` @IsOptional() @IsEnum(["c", "a", "r"], { each: true }) @Transform((value: string) => value.split(",")) status:...
I'm a interface designer and a coder and found myself in trouble trying to guarantee consistence across my team. It is very hard for them to think as I do...
I just dropped the idea of using Stelve/Sapper. Not mature enough. Thx anyway.
+1 ```sql CREATE TABLE "public"."payment" ( "id_payment" int8 NOT NULL DEFAULT nextval('payment_id_payment_seq'::regclass), "created_at" timestamptz NOT NULL, PRIMARY KEY ("id_payment") ); ``` It is quite simple, this will break the cli...
> #747 might help. OrderBy expects propertyNames instead of column names. Wtf? I just spent hours trying to debug this. For me, makes no sense.
Any news on this?
wtf is going on here?
> if the raw query fields maps directly with your entity property names you could do > > ```ts > EntityRepository.create({...raw}) > ``` My entities are `camelCase`and my database is...
I think this feature should be provided out of the box (supporting column mapping and naming strategies). I don't get why js ORMs don't provide a good way to convert...