Activities of "mel@quadsoftpa.com"

this is just on your website, it's timing out

  • Create new app through ABP suite
  • Click on the modules button within that app Inside ABP suite
  • Install module
  • End up with the screenshot Included in the First message.

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

  • ABP Framework version: v7.0.1
  • UI type: MVC

Is this missing a bug or did something change? thank you

I hope this fix is quick, that's not and acceptable workaround as it will corrupt my entire database.

  • ABP Framework version: 7rc6
  • UI type: Blazor
  • DB provider: EF Core

I'm not able to create or edit any of my current entities due to the following error. Please advise. this is new since upgrading to rc6.

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.

  • **ABP Framework version:**6rc3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): MVC

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

Answer

I should mention that the scenario does work up until CommunitiesAppService is alwasy null

Question
  • **ABP Framework version:**6rc3
  • UI type:Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): MVC

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

Showing 1 to 10 of 51 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11