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