Activités de "liangshiwei"

Hi,

Export requires some js. Did you add it? See https://datatables.net/download/release

What version are you using?

Yes, it looks good.

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

Affichage de 4591 à 4600 sur 4886 entrées
Made with ❤️ on ABP v8.2.0-preview Updated on mars 25, 2024, 15:11