Base solution for your next web application

Activities of "jholla"

Yes I can connect just fine, ABPBoiler wont connect however

You're over engineering the problem with above solution(s)/proposals:

It is due to a JSON Serialization issue, and there is two ways to fix it by Ignoring Reference Loop Handling, or JsonIgnore Attribute:

Number 1: This was the fix to my issue, add this to Startup.cs inside the public void ConfigureServices(IServiceCollection services) method:

services.AddMvc().AddJsonOptions(options => {
    options.SerializerSettings.ReferenceLoopHandling
      = ReferenceLoopHandling.Ignore;
});

Related Articles on the above:

<a class="postlink" href="https://benohead.com/c-circular-reference-detected-serializing-object/">https://benohead.com/c-circular-referen ... ng-object/</a> ASP.NET Core API only returning first result of list Number 2: If you want to also be able to have your API ready for TCP/IP or MVC/Razor, do not use that and just use the [JsonIgnore] attribute, which is actually a better practice than the code above, see articles below for more info:

<a class="postlink" href="http://www.newtonsoft.com/json/help/html/serializationattributes.htm#JsonIgnoreAttribute">http://www.newtonsoft.com/json/help/htm ... eAttribute</a>

<a class="postlink" href="https://stackoverflow.com/questions/10169648/how-to-exclude-property-from-json-serialization">https://stackoverflow.com/questions/101 ... ialization</a>

says page not found, i want to implement this myself

FOUND THE FIX:

Step 1 targets the x86 platform

<a class="postlink" href="http://www.developerhandbook.com/entity-framework/project-failed-to-build-error-when-adding-an-entity-framework-migration-add-migration/">http://www.developerhandbook.com/entity ... migration/</a>

Step 2 installing TypeScript for Visual Studio fixed it, although TypeScript was already installed globally on my machine via npm

<a class="postlink" href="http://stackoverflow.com/questions/37350183/keep-getting-tsc-exe-exited-with-code-1">http://stackoverflow.com/questions/3735 ... ith-code-1</a>

@ismcagdas Any luck? I did send it into the email address you provided.

I emailed both .NET Core and MVC5 projects to you from <a href="mailto:[email protected]">[email protected]</a>, with a subject heading of: "jholla abp projects".

Im trying the .NET Core version and Im not sure what this means:

<a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Core">http://aspnetboilerplate.com/Pages/Docu ... plate-Core</a>

Migrator.EF tool is used for adding/applying EntityFramework migrations. In order to create your database, open command prompt and move to root folder of EntityFramework project in your solution. Then run "dotnet ef database update" command."

Now I am getting this error:

PM> Update-Database The project 'CPFSApp.Web' failed to build. PM>

This seems to be my issue,and i said "seems" so it might be, but Im trying to figure out how to fix EF/PkgMgr - <a class="postlink" href="http://stackoverflow.com/questions/9674983/the-term-update-database-is-not-recognized-as-the-name-of-a-cmdlet">http://stackoverflow.com/questions/9674 ... f-a-cmdlet</a>

In that StackOverflow it says theres a known bug in EF + VS2015. Do you know about it?

Ideally I would prefer .NET Core but it doesnt seem to come w/ Angular GUI to manage roles

Showing 1 to 10 of 12 entries