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

Activities of "aaron"

What did you do that causes that exception?

how can i [change] to the .NET CORE

For the most part, you can just change the <TargetFramework> in .csproj files from net461 to netcoreapp2.0.

is SignalR work now in the .net Core ?

Related issue: https://github.com/aspnetzero/aspnet-zero-core/issues/314

why the UserLinkManager does not inherit the ITransientDependency?

UserLinkManager inherits DomainService, so it's covered by Conventional Registrations.

Does the documentation have any reference to the ITransientDependency?

Yes, the Dependency Injection documentation mentions that in the Helper Interfaces section.

It works fine.

See this line above the download button:

If you don't have permission yet, you can add your github users using "Github Users" tab on License Management page to get access.

It <ins>is</ins> deleted, but not necessarily committed.

That's great :)

You need to inherit ITransientDependency:

public class JobManager: IJobManager, ITransientDependency

"when the UOW is completed <ins>or</ins> when current transaction is committed"

To be clear, ApplyAbpConceptsForDeletedEntity executes when SaveChanges is called:

  • explicitly, or
  • automatically when the UOW is completed, or
  • automatically when current transaction is committed (i.e. the outermost UOW is completed)

In cases 1 and 2, a rollback is still possible <ins>after</ins> (but it doesn't get called <ins>on</ins> a rollback).

How: Duplicate of #4084@f49f2625-f54c-4486-a701-ce50d5e16ed5

<cite>alirizaadiyahsi: </cite>

Abp.HangFire.AspNetCore is already referenced in AspNetZero. You can use it directly. After you apply this step: https://aspnetzero.com/Documents/Development-Guide-Core#background-jobs-and-hangfire then you can also use Hangfire API. Just write Hangfire code.

Where: Duplicate of #2645@b7f111ed-945f-4b50-9722-d62c0b9a22be

<cite>Hozkar: </cite> I'm trying to define my Recurring Jobs in the Postinitialize Method of my Web Module

Also see the second topic for solutions to potential issues.

Showing 1091 to 1100 of 1543 entries