Activities of "mel@quadsoftpa.com"

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

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

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

  • 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.

  • **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

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

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

I didn't get any response to my first inquiry, so I'm trying again. I've seen all kinds of questions about this, but I've never seen it asked specifically about a second database. probably the best thing to do is for me to give you my module code. Would you be willing to take a look at this and if so let me know where I can send. Thank you!

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

I need some assistance with the error in the attached message. I burnt two days on it and I can't get it figured out. So I have two databases, one for the basic ABP tables and the second one for module tables. Everything is working fine but now I'm trying to link an entity in the secondary database with dbo.AbpUsers in the primary database. I've seen this question asked before, I've seen kind of half answers and redirections to a sample project or to, but I just cannot get this to work.

dbo.AbpUsers does have an extra column (ExtraProperty), "Title" that may be the root of the problem. I really need very specific help here, a redirection to projects DocumentationSamples or EfCoreMigrationDemo isn't going to help me because I've already pulled my hair out reviewing those projects. thank you very much!

open

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: 6.0.0-rc.2 or 5.3.3
  • UI type:Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): No
  • Exception message and stack trace:
  • Steps to reproduce the issue:" just running the application

Application '/LM/W3SVC/2/ROOT' with physical root 'F:\Documents\SourceCode\Keystone\KeyChoices.Abp\app\src\KeyChoices.Blazor' has exited from Program.Main with exit code = '1'. First 30KB characters of captured stdout and stderr logs: [13:24:06 INF] Starting web host. [13:24:09 FTL] Host terminated unexpectedly! System.IO.FileNotFoundException: Could not load file or assembly 'Volo.Abp.Account.Pro.Public.Application.Contracts, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified. File name: 'Volo.Abp.Account.Pro.Public.Application.Contracts, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null' at System.Reflection.CustomAttribute._CreateCaObject(RuntimeModule pModule, RuntimeType type, IRuntimeMethodInfo pCtor, Byte** ppBlob, Byte* pEndBlob, Int32* pcNamedArgs) at System.Reflection.CustomAttribute.CreateCaObject(RuntimeModule module, RuntimeType type, IRuntimeMethodInfo ctor, IntPtr& blob, IntPtr blobEnd, Int32& namedArgs) at System.Reflection.CustomAttribute.AddCustomAttributes(ListBuilder1& attributes, RuntimeModule decoratedModule, Int32 decoratedMetadataToken, RuntimeType attributeFilterType, Boolean mustBeInheritable, ListBuilder1 derivedAttributes) at System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeType type, RuntimeType caType, Boolean inherit) at System.RuntimeType.GetCustomAttributes(Type attributeType, Boolean inherit) at System.Attribute.GetCustomAttributes(MemberInfo element, Boolean inherit) at Volo.Abp.Modularity.AbpModuleHelper.FindDependedModuleTypes(Type moduleType) at Volo.Abp.Modularity.AbpModuleHelper.AddModuleAndDependenciesRecursively(List1 moduleTypes, Type moduleType, ILogger logger, Int32 depth) at Volo.Abp.Modularity.AbpModuleHelper.AddModuleAndDependenciesRecursively(List1 moduleTypes, Type moduleType, ILogger logger, Int32 depth) at Volo.Abp.Modularity.AbpModuleHelper.AddModuleAndDependenciesRecursively(List1 moduleTypes, Type moduleType, ILogger logger, Int32 depth) at Volo.Abp.Modularity.AbpModuleHelper.FindAllModuleTypes(Type startupModuleType, ILogger logger) at Volo.Abp.Modularity.ModuleLoader.FillModules(List1 modules, IServiceCollection services, Type startupModuleType, PlugInSourceList plugInSources) at Volo.Abp.Modularity.ModuleLoader.GetDescriptors(IServiceCollection services, Type startupModuleType, PlugInSourceList plugInSources) at Volo.Abp.Modularity.ModuleLoader.LoadModules(IServiceCollection services, Type startupModuleType, PlugInSourceList plugInSources) at Volo.Abp.AbpApplicationBase..ctor(Type startupModuleType, IServiceCollection services, Action1 optionsAction) at Volo.Abp.AbpApplicationFactory.CreateAsync[TStartupModule](IServiceCollection services, Action1 optionsAction) at Microsoft.Extensions.DependencyInjection.ServiceCollectionApplicationExtensions.AddApplicationAsync[TStartupModule](IServiceCollection services, Action1 optionsAction) at Microsoft.Extensions.DependencyInjection.WebApplicationBuilderExtensions.AddApplicationAsync[TStartupModule](WebApplicationBuilder builder, Action1 optionsAction) at KeyChoices.Blazor.Program.Main(String[] args) in F:\Documents\SourceCode\Keystone\KeyChoices.Abp\app\src\KeyChoices.Blazor\Program.cs:line 36

no matter what I try, I can't get past v5.3.2 dotnet tool update -g Volo.Abp.Cli --prerelease

Why isn't the source code for Volo.Abp.Identity.Domain included in the Pro module? Providing part of the source code isn't complete. Also, how do I ask a question like this without burning one of my support tickets? This isn't a technical question. Thank you

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