Activities of "alper"

normally you should be using Suite. but you need to change the templates

I'll discuss this request with the team. we need to think if there's a drawback of this operation.

done https://github.com/abpframework/abp/commit/b1b9af0656216e39fe9d62420250d3fc00a47735

sorry I couldn't read the history but how about writing a setInterval method for 30 mins on the client which makes a request to refresh the token at 29:50:00. if the user has closed the browser than it'll not work and the token will expire in the specified time.

Answer

I think you need to reference your Application.Contracts project to your Host or Web project. Because PermissionDefinitionProvider.cs is in the Contracts project.

Hi,

Let's write an example code for AggregateAsync and Aggregate. Is this what you do when you don't have a GetMongoQueryableAsync() ? If yes, show me what's the final method signature of GetMongoQueryableAsync()

    public class MongoCellPhoneRepository : MongoDbRepository<Moongo03295343MongoDbContext, CellPhone, Guid>,
        ICellPhoneRepository
    {
        public MongoCellPhoneRepository(IMongoDbContextProvider<Moongo03295343MongoDbContext> dbContextProvider)
            : base(dbContextProvider)
        {
        }

        public async Task<List<CellPhone>> GetListAsync(CancellationToken cancellationToken = default)
        {
            var dbContext = await GetDbContextAsync(cancellationToken);
            var aggregateFluent = dbContext.CellPhones.Aggregate(new AggregateOptions
            {
                Collation = new Collation("tr")
            });

            var asyncCursor = await dbContext.CellPhones.AggregateAsync(
                new EmptyPipelineDefinition<CellPhone>(), new AggregateOptions
                {
                    Collation = new Collation("tr")
                }, cancellationToken);
        }
    }

do you want to use an entity from another microservice as a navigation property?

I think both of them are related to the same entity name. I already created an issue for this. Can you change them manually on your generated code for a quick workaround?

Answer

Hi,

  1. I think it's fixed in the latest version. I couldn't reproduce it on our demo website which is also Angular commercial.abp.io/demo

  2. The text is updated

For the last 2 items, I created an issue.

@yuemy although it's supported by the infrastructure, it's not supported at UI level. you've a Business license, I guess you can implement it on your side. if you need consultancy, an ABP team member can work with you. contact me if you're interested in info@abp.io

Showing 1081 to 1090 of 2058 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 23, 2025, 10:47