Activities of "cleverplatform"

Hi thanks for a response,

  1. I think when I used abp.suite and I selected 'File Management' module on Modules page, expecting that this action will add all necessary for my project. even registration npm packages. Otherwise It doen't make sense to install only Nuget package for File management module when you are expecting user manual interaction. - I think from that point of view it is bug
  2. Also I don't get meaning Modules page in abp.suite in case that I don't know which moduies were already included in my project - correct me - but it is quite confusing when im using suite generator which created a new project using project template with already installed modules but i need to dig them from documentation/project which one there were included

Hi, I implemented as you suggested, UI of File Management has been displayed, but nothing was working on fronend and there was js errors loged in browsers console. Did I missed anything? I read whole documentation to this, no other setting I found

Is here anybody for who this module is working? I expected that this simple module should be pretty straight forward to test your framework,

Could you pls. navigate me to right direction? could you pls. prepare sample for this module? It will be really helpull even for another commercial modules which aren't included in startup template and we can avoid situation that something is necessary to execute manually or set diferently

thanks

Hi could you navigate me how to get logs ? - did you mean logs from abp suite or another specific detailed logs related to error?

As I said I added missing files manually, UI displayed content but when I clicked on any action on component errors are occured. Im not able to validate source code.

It will be really nice for these commercial modules (specially when you didn't activate them in some default template) to prepare separated samples specially when there can be specific issues and specific step. That save time on both sides.Otherwise I don't think any additional value why I bough commercial licence when I need to re-write whole existing module (FileManagement in that case)

Let me know

Hallo,

I know where the documentation is located (even your link doesn't working). I have read it few times. there is no information about issues I got.

This support doesn't solve my problem! Are you sure that link above solve situation in FIleManagement module? there are no sections about 'errors', etc.

Where I could see a functional example using this module ?

I solved using this module by myself.

Correct instructions should be in your documentation:

  1. if you want to use FileManagement you MUST install Blob Storing per documentation
  2. if you are using VS2019 you can install npm modules by right clicking on package.json file and choose 'Restore Packages'

Core of problem was that Blob Storing system has not been activated for solution.

Hi, here are details - also i simulated it again today with a new version CLI 4.2.2, putting again detailed steps:

  1. CMD: abp new BookStore

  2. open solution BookStore.sln in VS -> rebuild -> run BookStore.DbMigrator - all ok - initial migration has been created + database created in SQL server (SQL Server 2014)

  3. created Book entity in domain + add into db.context + add additional information into BookStoreDbContextModelCreatingExtensions about book entity + created BookSeed (all changes in code i put below) :

    • Book Class: public class Book : FullAuditedAggregateRoot<Guid>, IMultiTenant { public Guid? TenantId { get; set; } [CanBeNull] public Tenant Tenant { get; set; } public string StoreName { get; set; } [Column(TypeName = "nvarchar(4000)")] public string Description { get; set; } [Column(TypeName = "nvarchar(MAX)")] public string Html { get; set; } protected Book() { } public Book(string storeName, Guid? tenantId) { StoreName = storeName; TenantId = tenantId; } }

    • added in BookStoreDbContext.cs: public DbSet<Book> Books { get; set; }

    • BookStoreConsts: public static class BookStoreConsts { public const string DbTablePrefix = "App"; public const string DbSchema = "bookstore"; }

    • added in BookStoreDbContextModelCreatingExtensions.cs builder.Entity<Book>(b => { b.ToTable(BookStoreConsts.DbTablePrefix + "Books", BookStoreConsts.DbSchema); b.ConfigureByConvention(); });

    • BooksSeed in Domain: public class BooksSeed : IDataSeedContributor,ITransientDependency { private readonly IRepository<Book, Guid> _bookRepository; public BooksSeed(IRepository<Book, Guid> bookRepository) { _bookRepository = bookRepository; } public async Task SeedAsync(DataSeedContext context) { if (await _bookRepository.GetCountAsync() <= 0) { //await _bookRepository.InsertAsync(new Book("book_name", null), autoSave: true); } } } )

  4. add migration using -> Add-Migration "books" + Update-Database - migration applied succesfully in migration folder and also into database

  5. run BookStore.DbMigrator - for applying a new BookSeed -> error occured:

System.InvalidOperationException: 'The entity type 'TenantConnectionString' requires a primary key to be defined. If you intended to use a keyless entity type, call 'HasNoKey' in 'OnModelCreating'. For more information on keyless entity types, see https://go.microsoft.com/fwlink/?linkid=2141943.'

Hi not sure if you have any progress with this issue but i found possible solution by using this fragment in "XXXDbContextModelCreatingExtensions.cs"

    builder.Entity<TenantConnectionString>().HasKey(lc => new { lc.TenantId, lc.Name});
    

could you pls. confirm if that is posible solution? or it is an issue on framework side, or should I set something differently.

thanks, let me know Erik

Hi - no - im not using one shared database for all tenants erik

works like charm! Thanks a lot

Hi Hakan, I found only info here https://docs.abp.io/en/commercial/latest/road-map; "More code generation / developer assistance features for the ABP Suite" - so I don't know what is hidden behind that backlog Item, and I meant that can be exactly to build there relationships generation.

Erik

Zobrazeno od 1 do 10 z celkem 19 záznamů
Made with ❤️ on ABP v8.2.0-preview Updated on března 25, 2024, 15:11