Base solution for your next web application

Activities of "yekalkan"

Hello,

You have to get the transaction manually. That should fix your problem:

private readonly IActiveTransactionProvider _transactionProvider;

       public YourRepository(. . . . .  IActiveTransactionProvider transactionProvider)
            : base(dbContextProvider)
        {
           .
           .
            _transactionProvider = transactionProvider;
        }
        .
        .
       cmd.CommandText = "EXTERNAL_API@ImportExternalAction";
       cmd.CommandType = CommandType.StoredProcedure;


           cmd.Transaction = (DbTransaction)_transactionProvider.GetActiveTransaction(new ActiveTransactionProviderArgs
            {
                {"ContextType", typeof(YourAppDbContext) },
                {"MultiTenancySide", MultiTenancySide }
            });


        cmd.Parameters.Add(new SqlParameter("i_ContactId", contactId));
        cmd.Parameters.Add(new SqlParameter("i_PackageCode", packageCode));
        .
        .

hi,

No, your changes certainly doesn't break anything.

Your license code seems outdated. Go to <a class="postlink" href="https://aspnetzero.com/download">https://aspnetzero.com/download</a> and download a new project with same company and project name. Copy the license code to your project. it should be working.

Normally you don't have to do this, but your case is exceptional.

Hi,

<a class="postlink" href="https://stackoverflow.com/questions/17883481/delete-a-file-named-nul-on-windows">https://stackoverflow.com/questions/178 ... on-windows</a>

i'm not sure if this works but it's a known issue.

Hi,

We have a CodeProject article about that.

<a class="postlink" href="https://www.codeproject.com/Articles/1199648/Using-Stored-Procedure-User-Defined-Function-and-V">https://www.codeproject.com/Articles/11 ... tion-and-V</a>

Thanks for the report. We've fixed it.

Hi,

Only 5.1+ versioned projects come with rad tool. Extension itself does nothing about code generation.

Hi,

We shared a video today <a class="postlink" href="https://youtu.be/lqu7AVBTepw">https://youtu.be/lqu7AVBTepw</a>

And the documentation is on the way.

Hi,

If you are using Visual Studio, "ctrl + k + d" shortcut should format the file.

I'll investigate what causes that.

Hi,

Have you run NSwag?

Hi @BlueBrackets

We have fixed it. You can download a new project and try again, or simply copy aspnetzeroradtool.dll to your project.

Unfortunately, auto add-migration and update database is disabled for mac. You can run them manually.

Showing 1 to 10 of 314 entries