Activities of "liangshiwei"

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.

Hi,

I used the project you provided, it works fine for me. PS: I don't have devart license key ,so I use the official oracle driver and oracle version is 18c.

See https://github.com/realLiangshiwei/AbpQa332/tree/tenant

Will there be this problem if you switch to the official driver?

I can help you remotely , my email is shiwei.liang@volosoft.com

Showing 6401 to 6410 of 6692 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 01, 2025, 08:37