Activities of "alper"

ABP Framework is using the following library for Dynamic LinQ Queries

  • https://www.nuget.org/packages/System.Linq.Dynamic.Core

In the old versions of EF (like EF6 it was supported) but in EF Core you cannot write a query and use a string sortable field.

On the other hand, you can write a query like below:

using System.Linq.Dynamic.Core;


  var dbSet = await GetDbSetAsync();
            return await dbSet
                .WhereIf(
                    !filter.IsNullOrWhiteSpace(),
                    author => author.Name.Contains(filter)
                 )
                .OrderBy(sorting)
                .Skip(skipCount)
                .Take(maxResultCount)
                .ToListAsync();

this notation is frequently used in our samples => https://docs.abp.io/en/abp/latest/Tutorials/Part-7?UI=MVC&DB=EF

but again afaik you cannot write such a query:

var query = from supplyNetwork in queryable
                join networkType in _networkTypeRepository on supplyNetwork.NetworkTypeId equals networkType.Id
                orderby input.Sorting // it is not supported by EF Core
                select new { supplyNetwork, networkType }

you can use it like;

query = query.OrderBy(input.Sorting);

PS: don't forget to import using System.Linq.Dynamic.Core

closing the issue since it's fixed in the dev branch. you can always reopen if you reproduce it after v4.3

I think there's also another method for your second "auto generated" action in LitmusUserAppService. You can disable your application service so that it doesn't expose its methods as WebAPI

[RemoteService(false)]
public class LitmusUserAppService : ApplicationService
{

}

we are not experienced in Telerik components but will check this. by the way did you find a solution?

are you using subdomains for tenant selection in your test?

I think it should capture that Google Authentication is used. and I guess it navigates to Google which we don't capture it.

loginPage has a returnUrl parameter in MVC side. If you send a returnUrl parameter it should navigate to your URL

Can you try to set your DateTime Kind to UTC This way, it'll support UTC

Configure<AbpClockOptions>(options => options.Kind = DateTimeKind.Utc);

https://github.com/abpframework/abp/issues/4067

It's still active on my side. And planning to investigate the issue deeper with our Oracle package author.

hi Leonardo,

sorry for my late response,

this menu item will be shown on host myGroup.AddPermission(AvalancheOCPPermissions.Dashboard.Host, L("Permission:Dashboard"), MultiTenancySides.Host);

this menu item will be shown on tenant myGroup.AddPermission(AvalancheOCPPermissions.Dashboard.Tenant, L("Permission:Dashboard"), MultiTenancySides.Tenant);

Showing 1121 to 1130 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