Base solution for your next web application

Activities of "alirizaadiyahsi"

Both will work. You can set the url addresses for both public and admin websites in appsettings.json.

Hi,

This sample created long time ago (before subscription management development). So you can not see it.

Answer

Hi,

Please check following document: <a class="postlink" href="https://www.aspnetzero.com/Documents/Development-Guide-Core#public-web-site">https://www.aspnetzero.com/Documents/De ... c-web-site</a>

Hi,

we seperate these two project. So you should publish these two application to different domain. And yes, if users click logi, application redirect them to different domain, and after login, redirect back.

Hi,

we seperate these two project. So you should publish these two application to different domain. And yes, if users click login, application redirect them to different domain, and after login, redirect back.

Hi,

You just change "Payment" configurations in appsettings.json. Before this, you should create your own paypal app. <a class="postlink" href="https://developer.paypal.com/docs/integration/admin/manage-apps/">https://developer.paypal.com/docs/integ ... nage-apps/</a>

Answer

Hi,

Check this document to better understand: <a class="postlink" href="https://www.aspnetzero.com/Documents/Development-Guide-Core#public-web-site">https://www.aspnetzero.com/Documents/De ... c-web-site</a>

Hi,

There are already examples in project under src/account. You can take this as an example.

Hi,

AutoMap(Object) : two-way mapping AutoMapFrom (Object) : from Object to another mapping AutoMapTo(Object) : to Object from another mapping

Your mistake: You defined

[AutoMapFrom(typeof(Subject))]

but you used

Subject subject = input.MapTo<Subject>();

You want to map from input to entity, but you defined the exact opposite. So you change it to "AutoMap" or "AutoMapTo" is working.

Hi,

I tested your project. I find out there is another problem with your project. Following line is incorrect;

[AutoMapFrom(typeof(Subject))]

Correct one :

[AutoMap(typeof(Subject))]

After this change, I didn't get any error while I am creating a "Subject" entity. I could add succesfully.

Could you try to change auto map config as I mentioned above? And try again?

Showing 221 to 230 of 369 entries