Base solution for your next web application

Activities of "ismcagdas"

Hi,

Instead of doing this, you can create a background job and start it in the PostInitialize of your module. See <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers">http://aspnetboilerplate.com/Pages/Docu ... nd-Workers</a>.

You can use UnitOfWork attribute in your backgroundJob. In this way, you dont block the initialization of your application.

Hi,

If I understand you correctly (I assume you want to use Resource-1-en.xml and Resource-2-en.xml in the same localization source for a single language.), you need to define multiple localization sources.

Hi,

Main reason here is castle windsor, you can check it here <a class="postlink" href="https://github.com/castleproject/Windsor/issues/145">https://github.com/castleproject/Windsor/issues/145</a>. I think you mean .Net Core, because we already use ASP.NET Core.

You can replace DI in ABP but it's not an easy thing to do. ABP does not have extension points for doing that easily.

Hi,

At the time that template is created, we decided to do it in that way but now we are changing this approach for our angular2 application.

After that, we can do same thing for our free template as well. You can create an app service and move AccountController's code to that appservice.

Answer

Hi,

Nothing comes to my mind as a better solution. I think this is good to go :).

Can you try this ?

_userService.getUsers({ Filter : ""})
            .done(function(result) {
                var users = result.items;
                console.log(users);
            });

Hi,

I'm not sure if google allows this kind of request to it's map API. As I said, this is not related to AspNet Zero, you can check google maps javascript api for more information. <a class="postlink" href="https://developers.google.com/maps/documentation/javascript/">https://developers.google.com/maps/docu ... avascript/</a>

Hi,

You can create a custom repository and access dbContext in it. See <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Repositories#custom-repositories">http://aspnetboilerplate.com/Pages/Docu ... positories</a>. In that way, you might be able to use FromCache extension method of zzz Framework.

If you want to use this option in generic repositories, you can try to write an extension method for generic IRepository. You can check this gist for that <a class="postlink" href="https://gist.github.com/hikalkan/74f624c0b42c78fb1619e92b3d1972f8">https://gist.github.com/hikalkan/74f624 ... 2b3d1972f8</a>.

We haven't tried this framework with ABP or AspNet Zero, we will be very happy if you can share your results with us.

Thanks.

Hi,

We don't have any knowdledge of fancybox plugin. You can first check which version of jquery is compatible with your version of fancybox.

If that does not help, you can serach on the internet for this problem.

Answer

You are welcome :)

Showing 11961 to 11970 of 12740 entries