Base solution for your next web application

Activities of "ismcagdas"

Answer

Hi,

Yes, there is a naming convetion, you can check it here <a class="postlink" href="http://www.aspnetboilerplate.com/Pages/Documents/AspNet-Core">http://www.aspnetboilerplate.com/Pages/ ... spNet-Core</a> under Application Services as Controllers title.

Hi,

Permission names are defined in core module but added in app module. So you need to depend on app module.

Hi,

Thank you for your detailed explanation. In that case I suggest you to create a custom AbpMvcAuthorize filter which derives from AbpMvcAuthorize. You can check this comment to understand how to do it <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1256#issuecomment-237463318">https://github.com/aspnetboilerplate/as ... -237463318</a>

You also need to define a Feature for tenants which indicates whether anonymous users can read blog or not. (for example AllowAnonymousToReadBlog)

In your custom filter, first check the value of feature for current tenant, then if the feature value is false, call base OnAuthorize method of base class.

In this case you will check for user authorization when the AllowAnonymousToReadBlog feature value is false.

Please let us know if you have any problems implementing this. Or if this is not a good solution for you.

Hi,

Can you try after a rebuild ? If it does not work, can you send your project to us (to <a href="mailto:[email protected]">[email protected]</a>).

Thanks.

Answer

Hi,

We haven't faced such a problem when deploying to azure. Your problem seems like a security or configuration issue.

I have found this one when searching about your problem <a class="postlink" href="https://github.com/SignalR/SignalR/issues/3659#issuecomment-247773451">https://github.com/SignalR/SignalR/issu ... -247773451</a> Can you try to do that ?

Hi,

This is a duplicate of #1826. Let's continue there.

Thanks for sharing your experience :)

Hi,

You have to create a new angular2 application for your home page and customers page. AspNet Zero does not offer anything for now. We are developing angular2 version but it will be focused on the admin site.

You can use angular-cli for creating a new angular2 project <a class="postlink" href="https://github.com/angular/angular-cli/">https://github.com/angular/angular-cli/</a>. (But it's still in beta :)) If you want to use AspNet Zero's AppService methods from angular2, it is a different issue.

Hi,

For Core template classic Update-Database command does not work. In order to run migrations and seed method follow the steps below.

  1. Open command prompt
  2. navigate to EntityFramework project directory in your solution on command prompt
  3. run command "dotnet ef database update"

This information should be displayed when you download the project but it's very possible to miss that :). Please let us know if you have any problems.

Hi,

Can you share your AppService method and jtable definition ?

Showing 12141 to 12150 of 12740 entries