Base solution for your next web application

Activities of "alaamh"

I have a question regarding application service implementation of GetCategories:

var categories = await _categoryRepository
                .GetAll()
                .Include(c => c.Children)
                .WhereIf(!input.Filter.IsNullOrEmpty(),
                    c => c.DisplayName.Contains(input.Filter)
                )
                .ToListAsync();

it's dump all the database, how to avoid that? I want to load only parent category with childrens of this parent

Thank you.

Hi sampath,

Excellent work man, Also

  • Is it possible to group client in a folder (app folder e.x) rather than add it's content in the root?

  • If we keep two solutions (client & server) what is the easiest steps to publish to Azure?

  • Do you have any recommendations (deployment script & steps) for configure Azure continues integration.

Thank you guys.

Excellent, please share the link :)

Answer

I'm using AspNet Core & angular 2.x, what your advice? there are two folders client & server how to configure continues integration from github?

Hi @ismcagdas,

kindly invite me too to your private repository, my user name is alaamh

Showing 11 to 15 of 15 entries