yes,you can enable long path for windows
Hi,
you can set MaxNewValueLength
in the DomainShared module
and add a new migrations file.
public class ...DomainSharedModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
EntityPropertyChangeConsts.MaxNewValueLength = 10000
}
}
** Unable to set property 'text' on object of type 'Blazorise.TextEdit'. The error was: Specified cast is not valid. ---> System.InvalidCastException: Specified cast is not valid.**
You need to check Blazorise.TextEdit
component used
okay : )
okay : )
Hi,
Sorry i could not reproduce the problem, could you share a simple project with me? i will check it. thanks
shiwei.liang@volosoft.com
Do you have code for this demo?
ABP customers can also download the source code of the https://x.leptontheme.com/ from https://abp.io/api/download/samples/leptonx-demo.
https://abp.io/docs/latest/ui-themes/lepton-x/index#source-code
Hi
just
private Author()
{
/* This constructor is for deserialization / ORM purpose */
}
internal Author(
string name,
DateTime birthDate,
string? shortBio = null)
: base(0)
{
SetName(name);
BirthDate = birthDate;
ShortBio = shortBio;
}