No option to Replace package with source code.
7.0.1. I have since uninstalled ABP suite with the same results. I really need this source integrated. Thank you
I hope this fix is quick, that's not and acceptable workaround as it will corrupt my entire database.
now, this is not the same error. my is
Volo.Abp.Identity.IdentityRole ValueBufferExpression: ProjectionBindingExpression: EmptyProjectionMember IsNullable: False , "Code")' failed. Either the query source is not an entity type, or the specified property does not exist on the entity type.
please reference this question and answer https://support.abp.io/QA/Questions/3634/How-to-use-extra-properites-in-IQueryable
I'm trying to do the same thing, but in a module on a second dbContext. in the primary app module I have this and then I can access the extra property,
ObjectExtensionManager.Instance.Modules()
.ConfigureIdentity(identity =>
{
identity.ConfigureRole(role =>
{
role.AddOrUpdateProperty<string>("Code", property =>
{
property.Attributes.Add(new RequiredAttribute());
property.Attributes.Add(new StringLengthAttribute(10)
{
MinimumLength = 1
});
});
});
});
however in the module I get this error
System.InvalidOperationException: Translation of 'EF.Property<string>(EntityShaperExpression: Volo.Abp.Identity.IdentityRole ValueBufferExpression: ProjectionBindingExpression: EmptyProjectionMember IsNullable: False , "Code")' failed. Either the query source is not an entity type, or the specified property does not exist on the entity type.
please advise. Thank
I need to support cascading drop downs (select). I can easily do this with Telerik Blazor, but I'd like to stay as close as possible with the suite generated code.
if I stick with the default binding, the only way I could think of getting a message back from the createDto to load the municipalities was an event. none of this seems like a very good idea, that's why I'm posting here. Should I change my bindings on the select or do you have a better scenario to get municipalities to load when County is changed. the images should give you a better understanding. Thank you