You can use winmerge to compare their differences https://winmerge.orga
Hi,
No , as the fluent validation document mentioned, it does not support Blazor.
What separate custom module?
my steps:
blogpost master entityblogfile child entityblogauthor child entityCan you share a complete step-by-step reproduction?
Hi,
FluentValidation does not provide integration with Blazor out of the box
see: https://docs.fluentvalidation.net/en/latest/blazor.html
You can consider to use Blazorise validation https://blazorise.com/docs/components/validation
Update the NotificationApplicationModule
[DependsOn(
typeof(NotificationDomainModule),
typeof(NotificationApplicationContractsModule),
typeof(AbpDddApplicationModule),
typeof(AbpAutoMapperModule)
)]
public class NotificationApplicationModule : AbpModule
{
public override void OnPreApplicationInitialization(ApplicationInitializationContext context)
{
var applicationBuilder = context.ServiceProvider.GetRequiredService<IObjectAccessor<IApplicationBuilder>>();
if (applicationBuilder != null && applicationBuilder.Value != null)
{
var app = applicationBuilder.Value;
app.UseMiddleware();
}
}
...
}
Hi, @IbrahimSarigoz
The Oracle EF Core 23 provider will take the value set for OracleSQLCompatibility to know what DB version's SQL it should generate. By default, it will assume version 23 since it's ODP.NET 23. Oracle DB 23ai supports Boolean table columns. If you are using DB 19c, then you have to set OracleSQLCompatibility to 19 to tell ODP.NET to use numeric values instead of Booleans.
See