Vikash Rathee

Results 40 comments of Vikash Rathee

No, it doesn't work. I tried to specify `Task` on return type, as Task.FromResult return a task with type T. So I need some way to return any type ```...

No that causes build errors - `CS0127 Controller returns void, a return keyword must no be followed by an object expression.`

It only work when `Task` type is returned. I tried with `public async Task` as well, but it return 204 status from proxied API with no content

That throws `ObjectDisposed` exception - ![image](https://user-images.githubusercontent.com/6106479/141302579-901829b6-c1a2-4e16-9e3a-6e10e63b0ee2.png)

@kolkov any chance? I think this will be a quick fix if you agree that `AeSelectComponent` should be on exports list to allow `ae-select` dropdown in toolbar.

@fwitkowski Did you find any workaround for this? I also need to save `e164Number` only as string in my database

@nozzlegear any chance to take a look?

@Ant-hem I see in code that you are not validating `JToken`, `JObject` etc. So if you can add the `dynmic` type as well to skip the validation will make it...

We are also migrating from v5 to v6. I will wait for your final decision before making any changes in our app. I guess there was no validation in v5...

I fixed it on my end by converting the `DataTable` to `JArray` instead dynamic. Adding code here if it helps others. As you are not validating JArray, so this is...