Base solution for your next web application

Activities of "aaron"

Got page not found on:

Fixed the link - it was an uppercase S.

But, there they have used DataReader to read each value, I do not want to use that as it will deteriorate application performance. Is there better way to read whole data at once?

See:

The article shows how to call with "exec":

public async Task DeleteUser(EntityDto input)
{
    await Context.Database.ExecuteSqlCommandAsync(
        "EXEC DeleteUserById @id",
        default(CancellationToken),
        new SqlParameter("id", input.Id)
    );
}
Answer

For VS2015, install NETStandard.Library.NETFramework package.

Does reverting it to public work?

Do you mean create your own error notification?

abp.message.error("User not signed in");
Answer

Unfortunately, this is not allowed in ABP framework. I suggest setting email address to be username in your case.

Check that you added AutoRepositoryTypes attribute to your DbContext (see docs).

Yes, it's possible.

See:

Update to VS2017 15.3.3+. For VS2015, install NETStandard.Library.NETFramework package.

Showing 11 to 20 of 1543 entries