Activities of "krushnakant"

I have created two custom modules with different cruds, If i want to use first module's functionality to another same as when module reference given to Application. Can i give reference of first module to my second module and use functionalities combined without add it to another?

  • ABP Framework version: v5.2.2
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:My requirement is to add module dll reference in other module from ABP Suite.is it possible?
  • Steps to reproduce the issue:"
  • ABP Framework version: v5.2.2
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • My requirement is to add new language in my custom generated module from ABP Suite. Is it possible? because that module doesn't contain ABPLanguages table.
  • Steps to reproduce the issue:"
  • ABP Framework version: v5.2.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • How can I setup new ABP Project in Visual Studio Code? Please Provide detailed Information about how new abp project can run in visual studio code editor. Thank you.
  • Steps to reproduce the issue:"

I done with same our book author example. In book author example not define pass filter value. Also you are not define page size parameter. Please refer our existing Book Author example and try to pass filter value.Our example is not fulfill to the developer. please correct it and introduce new one example. in angular example is not completed so please all things complete.

you want example of filter please go with Book Author application and pass Filter with angular to our Entity Framework API

my question is angular pass filter parameter to ABP Entity Framwark API . I want to pass paging and filter parameter are server side so please how to implement this?

Our EF API means Entity Framework Our ABP API. I want to pass filter parameter with angular to our paging this is server side pass parameter so please

  • **ABP Framework version:**4.4.3
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

I am using Angular UI part. I am not able to pass filter and pagination with out book example. I want to pass Filter and paging information How to pass Filter value angular to EF API please explain it I pass this type of senior

getBooklist(Filter){
    this.someFilterValue = 'kanti';
    if(Filter !=null){
      alert(Filter)
      const bookStreamCreator = (query) => this.authorService.getList({            
       
        ...query,
        ...Filter
       
      });
  
     this.list.hookToQuery(bookStreamCreator).subscribe((response) => {
    this.author = response;
   
       });
    }else{
      const authorStreamCreator = (query) => this.authorService.getList(query);

      this.list.hookToQuery(authorStreamCreator).subscribe((response) => {
        this.author = response;
      });
    }
    
  }
but i am not able to get filter value to EF API

Ok, Thank you for support.

Ok, So if i use context.Services.AddStackExchangeRedisCache(options => { options.Configuration = "localhost:6379"; }); in my web module.cs file in ConfigureServices it gives me result items on monitor command in redis cli while execute GetOrAddAsync method in app service. And for that i have to run redis server compulsory while running my web project. If i don't use this, in monitoring redis cli i can't get cached items but can run my web project without running redis server dependency. Is there any option that how can i see cached items in monitoring redis cli.

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