Activities of "SuperBeastX3"

  • ABP Framework version: v7.4
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

What is the proper ABP implementation to add a repository that does not have an underlying entity? It is not based on an entity that maps to a table. For example, I have a dashboard that is running a complex query that joins many of my underlying tables, but I can't seem to register the repository in the EF Module. The add default repositories doesn't seem to pick up my repository, probably because it does not inherit efcorerepository. What is the right way to register it? Or, do I need to create an entity that does not map to an actual table?

  • ABP Framework version: v7.4
  • UI Type: MVC
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

I am trying to access the file descriptor service in javascript. I am using this line, which was taken from the file management javascript file: var fileDescriptorService = volo.fileManagement.files.fileDescriptor; I get the following error: Cannot read properties of undefined (reading 'files')

I don't understand why.

  • ABP Framework version: v7.4
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): Tiered

I have some nested many to many objects and I want to know what is the preferred way to show the nested items properties on the List page? ObjectA is the main object, it has the many to many edit tab to ObjectB. ObjectB has 1 to many navigation properties to ObjectC. On the edit modal for ObjectA, on ObjectBs list page (for edit and delete), I want to show more navigation properties on ObjectB. What is the proper way to do that? Ultimately, I want an object with full navigation properties all the way down from the starting object available to use on the List page. How should I implement that?

  • ABP Framework version: v7.4.0
  • UI Type: MVC
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): No
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Using the abp-tooltip-left/top/bottom/right with dynamically added items does not work. You can use your many to many template and then add one of the tooltips to the java script to add it. The html doesn't render the tool tip. If you use the native bootstrap attributes data-bs-toggle, data-bs-placement, and data-bs-title, the tooltip works as expected.

ABP Framework version: v7.3.3 UI Type: MVC Database System: EF Core Tiered (for MVC) or Auth Server Separated (for Angular): tiered

I am trying to dataseed an object with a many to many collection. I create the collection items first, and then try to use those ids on insert of the many to many, but it never actually saves them. The underlying checks SetAssetCategoriesAsync don't see them yet because they are not in the database, so it doesn't pull any to save.

assetCategoryList.Add(await _assetCategoryManager.CreateAsync("Corporate Laptop", "Corporate Laptop", true));
assetCategoryList.Add(await _assetCategoryManager.CreateAsync("Developer Laptop", "Developer Laptop", true));

This next line creates the my asset taxonomy item, but doesn't add the newly created asset categories.

assetTaxonomy = await _assetTaxonomyManager.CreateAsync(assetCategoryList.Select(e => e.Id).ToList(), "Asset Taxonomy", "Asset Taxonomy Description"); ;

In the SetAssetCategoriesAsync (created by abp suite), no categories are found:

var query = (await _assetCategoryRepository.GetQueryableAsync())
    .Where(x => assetCategoryIds.Contains(x.Id))
    .Select(x => x.Id);
var assetCategoryIdsInDb = await AsyncExecuter.ToListAsync(query);
if (!assetCategoryIdsInDb.Any())
{
    return;
}

Please advise, thanks!

  • ABP Framework version: v7.3.3
  • UI Type: MVC
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

When I seed data for a new tenant, how can I get the edition? I tried using a feature of the edition with the feature checker, but that value is only set to the default value and isn't pulling in the correct editions feature. What is the proper way when data seeding to do this?

In my data seeder I am doing this: var featureName = await _featureChecker.GetOrNullAsync("FeatureName");

But it is always just the default value.

Thanks!

  • ABP Framework version: v7.3.3
  • UI Type: MVC
  • Database System: EF Core SQL Server
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
  • Exception message and full stack trace:
  • Steps to reproduce the issue: Use ABP suite to generate a new solution, create a new class in abp suite, it creates a partial DBContextModelSnapshot file. This file has compile errors for Duplicate DbContext attribute and a duplicate BuildModel function.
  • ABP Framework version: v7.3.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): MVC Tiered

I've used ABP suite to create a many to many UI screen that uses the type ahead. This is great, but not sure if this is the right design. For example, we have a parent item that has child items. This is where I used the many to many to create it. But, how can I change it so I am directly adding the foreign key item, and the many to many record at the same time? Is that the correct use of a many to many here? Or, should this just be a parent to children items? Not really a many to many, more of parent / child, where the child table has the parent id? I want the screen to work where you are editing the parent to add the children. Any sample or guidance would be appreciated!

Our commercial accounts private nuget link is giving a server 500 error. It has been a handful of days and it has never worked. Can we get this resolved?

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