Ben555555

Results 8 comments of Ben555555

I tried with the latest pre-release "2.1.0-preview.2". It only seems to work (partially) if I register the validator of the collection "TransportStepModelValidator ". `builder.Services.AddTransient();` The RuleForEach does not seem to...

@pavankjadda It is as you can see in my example: ``` constructor( ... @Optional() @Inject(RESPONSE) private response: Response ) { .. } this.response.cookie(name, value, { expires: expires, domain: domain, path:...

I created a temporary workaround for reading the cookies on server side: ``` private getMap(): Map { const map = new Map(); const all = this.cookieService.getAll(); for (let key in...

Thanks for your contribution. I faced a similar issue, when using the demo for capacitor. On the mobile the device the InAppBrowser does not return to the app. I just...

For now I ended up by extending the AuthService: ``` export class CustomAuthService extends AuthService implements IAuthService { constructor(browser?: Browser, storage?: StorageBackend, requestor?: Requestor) { super(browser, storage, requestor); } protected...

I'm using version 8.0.1 and SQL Server. Somehow in ChangeDetector.cs `if (!comparer.Equals(currentValue, snapshotValue))` returns true for the primary key of the entity that is already tracked. The entity state is...

@jepperaskdk I have the same issue. Do you know what the alternative is for "webApiToOpenApi" in nswag.json? It says: "Removed WebApiToOpenApiCommand: Use the WebApiOpenApiDocumentGenerator to build your own CLI referencing...