Attività di "nlachmuthDev"

Hi there,

what DBMS do you use? (MySql, Mssql, PostgreSQL)

Nevertheless you should not need to provide that convenstion override and specify the DateOnlyConverter for DateOnly Props.

I created a fresh application (ABP Framework Version 7.2.2) using MySql as DBMS and added a TestEntity with nullable DateOnly Property:

public class NullableDateOnlyTestEntity : AggregateRoot<Guid>
{
    public DateOnly? ValidFrom { get; set; }
}

After adding the DbSet for this entity, the migration could be created without specifing the value converter. Here is the resulting Migration:

As you can see the db column type would be date.

So please try to create the migration again without specifying the exact value converter.

Greetings Nico

Unfortunately there is a problem, currently in blazor serverside that causes audit logging not working correctly.

We already have an issue open for this at github. You can check its state here: https://github.com/abpframework/abp/issues/11682

Hi,

thanks for your report. I created an internal ticket for this and will get back to you.

Kind regards Nico

The fix will be included in the preview version for 7.3. I refunded the question.

Risposta

Can you share the logs when you try to build the solution?

Also could you try to restore using the dotnet cli with the following command? dotnet restore --no-cache --configfile .\NuGet.Config If there are errors too, please share them with us.

Risposta

Indeed the browsing of packages seems to be broken.

Also searching is affected by this: There are some packages missing for the OpenIdDict.Pro Module.

I created an internal ticket and will update you here.

Did you start a local redis via docker? When you create a seprated identity/openiddict server you need a redis running.

Here is the documentation for tiered solutions: https://docs.abp.io/en/commercial/latest/getting-started-running-solution?UI=NG&DB=EF&Tiered=Yes

Risposta

After internal discussion with the core team, I found out that the nuget feeds for commercial are based on a custom nuget server implementation and there wont be any changes made to support the explorer list feature for the commercial nuggets. So there wont be the functionality to search for commercial nuget packages.

If you want to add a module to your solution please use the abp suie or cli to do so.

I refunded the question for you.

Risposta

You can configure the audit functionality to log get requests.

add this to your ConfigureServices method inside your module:

Configure<AbpAuditingOptions>(options =>
{
    options.IsEnabledForGetRequests = true; //Enable auditing for get requests
});

You can find a full list of available options for audit logging here: https://docs.abp.io/en/abp/latest/Audit-Logging#abpauditingoptions

Hi,

you could use the BundleContributor to add your custom css file.

Here is the documentation: https://docs.abp.io/en/abp/latest/UI/Blazor/Global-Scripts-Styles

If you need futher assistance let me know.

Kind regards Nico

1 - 10 di 57
Made with ❤️ on ABP v8.2.0-preview Updated on marzo 25, 2024, 15:11