Activities of "liangshiwei"

Hi @leaf

you don't need do this, because I have fixed it. see https://github.com/abpframework/abp/pull/4234. You only need to pass parameters.

Hi,

See https://github.com/abpframework/abp/issues/386

EF Core team has completed this feature : https://docs.microsoft.com/en-us/ef/core/providers/cosmos/?tabs=dotnet-core-cli

You can use Microsoft.EntityFrameworkCore.Cosmos package.

Hi,

Do you mean you want to get data from database and bind to googlemap? You just create an application sevice and use repository to get data.

Hi,

In next version(3.1), we have added AbpAuditLogs to record user login infomation. See https://github.com/abpframework/abp/issues/4492. But it cannot manage user sessions, you can extend it and add the revocation token feature.

Could you give me a devart license? I tried use trial license but not work. thanks.

If you want to remove the quotes in sql, you can do it:

public class RemoveQuotesInterceptor : DbCommandInterceptor
{
    public override InterceptionResult<DbDataReader> ReaderExecuting(DbCommand command, CommandEventData eventData, InterceptionResult<DbDataReader> result)
    {
        return base.ReaderExecuting(RemoveQuotes(command), eventData, result);
    }

    public override Task<InterceptionResult<DbDataReader>> ReaderExecutingAsync(DbCommand command, CommandEventData eventData, InterceptionResult<DbDataReader> result,
        CancellationToken cancellationToken = new CancellationToken())
    {
        return base.ReaderExecutingAsync(RemoveQuotes(command), eventData, result, cancellationToken);
    }

    public override InterceptionResult<object> ScalarExecuting(DbCommand command, CommandEventData eventData, InterceptionResult<object> result)
    {
        return base.ScalarExecuting(RemoveQuotes(command), eventData, result);
    }

    public override Task<InterceptionResult<object>> ScalarExecutingAsync(DbCommand command, CommandEventData eventData, InterceptionResult<object> result,
        CancellationToken cancellationToken = new CancellationToken())
    {
        return base.ScalarExecutingAsync(RemoveQuotes(command), eventData, result, cancellationToken);
    }

    public override InterceptionResult<int> NonQueryExecuting(DbCommand command, CommandEventData eventData, InterceptionResult<int> result)
    {
        return base.NonQueryExecuting(RemoveQuotes(command), eventData, result);
    }

    public override Task<InterceptionResult<int>> NonQueryExecutingAsync(DbCommand command, CommandEventData eventData, InterceptionResult<int> result,
        CancellationToken cancellationToken = new CancellationToken())
    {
        return base.NonQueryExecutingAsync(RemoveQuotes(command), eventData, result, cancellationToken);
    }

    private DbCommand RemoveQuotes(DbCommand command)
    {
        command.CommandText = command.CommandText.Replace("\"", "");
        return command;
    }
}

Hi,

ABP follows some conventions, All connection string names are defined in the module's DbProperties class,you can easily find the connection string name of the module.

Like sass module:

Hi,

Sorry, I don't know much about oracle, but if your table and column names are uppercase, you can use this lilbary: https://github.com/efcore/EFCore.NamingConventions

Hi,

I have sent you an email I made the following changes:

  1. Use https instead of http
  2. Add UseAuthentication and UseAuthorization to the AuthServerHostModule
  3. Add npm package to the package.json file and run yarn,gulp command
  4. Add multiple languages to AuthServerHostModule and BackendAdminAppHostModule

Hi,

I don't think this is a problem, Because it is not recommended to enable sourcemap in a production environment. As you can see, github or Microsoft website has the same warning in the console.

Hi, I can't reproduce your problem, can you provide steps to reproduce? thanks.

Showing 5351 to 5360 of 5643 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30