Base solution for your next web application

Activities of "alaamh"

Hi @ismcagdas,

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

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?

Excellent, please share the link :)

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.

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.

It's working sorry, there are duplicate keys in the table AbpLanguageTexts .

I'm using asp.net core & angular 2.x v3.2.0

Yes, web.config file has been added to site's root folder, only when refresh the browser I'm getting: "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."

after restart the app service (it blows up :) ) It's working ..

Added this to make it work:

<ItemGroup> <DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version = "1.0.0"/> </ItemGroup>

and install Install-Package System.Diagnostics.DiagnosticSource -Pre

Showing 1 to 10 of 15 entries