Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "BobIngham"

Hi @SageSpecialSolutions,

Scroll down the page to: Angular Application Publishing So far, you're on http://localhost:22742 which is the WebAPI. To get to angular you should follow the instructions, run ng serve and you should be on http://localhost:4200 which is the WebUI.

Hope that helps.

By commenting out the two lines as mentioned above the features now appear. I don't understand why I would have to comment out "#if FEATURE_SIGNALR" but I think you have more important things to do than investigate this. Closing this issue and marking as answered, if you have comments please open and make them!

Adding another answer because of current sort problem....

Sorry, @ismcagdas, I know you're doing your very best to clear the forum in readiness for 8.2 but: My csproj file: My AppFeatureProvider: My AppFeatures: And when I go to set the chat feature for any of my tenants: Where is the chat feature? My Startup: Is there something obvious I'm doing wrong or should I just comment out this line - #if FEATURE_SIGNALR - in AppFeatureProvider? And my start

Answering this to try push it to the top of the list due to forum sorting problem.

.net core, angular, aspnet framework 4.7.1, Zero 6.8.0

I have this in my app service ;

public async Task Delete(EntityDto<int> input)
{
    await _ncDocumentRepository.DeleteAsync(input.Id);
}

public async Task Restore(EntityDto<int> input)
{
    using (_unitOfWorkManager.Current.DisableFilter(AbpDataFilters.SoftDelete))
    {
        var model = await _ncDocumentRepository.FirstOrDefaultAsync(m => m.Id == input.Id);
        model.IsDeleted = false;
        await _ncDocumentRepository.UpdateAsync(model);
    }
}

This is my interface:

Task Delete(EntityDto<int> input);
Task Restore(EntityDto<int> input);

Here's a picture of my angular controller:

And here's the offending code in service-proxies.ts:

If I manually change EntityDtoOfInt32 to number in my service proxy to test the code I get the following error:

I have refreshed nswag, rebooted, slapped my hand forcefully against my forehead and resorted to baging my head against the wall several times. It didn't help. Anyone, any ideas?

.NET Core, Angular, aspnet Framework 4.7.2, Zero 6.8.0

These are two methods in my service;

public async Task Delete(EntityDto<int> input)
{
    await _ncDocumentRepository.DeleteAsync(input.Id);
}

public async Task Restore(EntityDto<int> input)
{
    using (_unitOfWorkManager.Current.DisableFilter(AbpDataFilters.SoftDelete))
    {
        var model = await _ncDocumentRepository.FirstOrDefaultAsync(m => m.Id == input.Id);
        model.IsDeleted = false;
        await _ncDocumentRepository.UpdateAsync(model);
    }
}

This is my service interface:

Task Delete(EntityDto<int> input);
Task Restore(EntityDto<int> input);

Here's a picture of my angular component:

And here's the offending code in service-proxies.ts:

I have recompiled, run a refresh on swagger, rebooted, slapped my forhead several times and then banged my head against the wall ten times. The problem still doesn't seem to go away. Anyone any ideas?

That's great, I will investigate and revert if I need to. Thanks for the pointer.

Nope. Aaron tells me it's an aspnet problem. I have referred to it in other posts so this can be closed.

It's no problem, I didn't realise the issue was closed.... Good luck with everything and don't hesitate to reach out if we can help.

Showing 141 to 150 of 619 entries