Hi,
I think you have added ChatMessage and Friendship entities to your project. If so, you need to add a code firs migration as well. And then update the database.
Adding those tables is not the right way. I suggest you to delete those tables and add code first migrations, then update your database.
Please let me know if you need help on doing that.
Hi,
In fact, you should be able to use your AppServices from external apps like a mobile app. You need to use token based auth for that <a class="postlink" href="https://www.aspnetzero.com/Documents/Development-Guide#token-based-authentication">https://www.aspnetzero.com/Documents/De ... entication</a> (I assume your AppServices needs requests to be authanticated.)
And you can check the Logs.txt file in our Web project to see error details. It must be located under Logs folder or App_Data folder of your web app (It changes according to your AspNet Zero version).
Hi,
You need to Drop and ReCreate that index before altering Code field of AbpOrganizationUnits table. Please see this migration <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/blob/dev/src/MyCompanyName.AbpZeroTemplate.EntityFramework/Migrations/201609020817436_Upgrated_To_Module_Zero_0_11_2.cs">https://github.com/aspnetzero/aspnet-ze ... _0_11_2.cs</a>
Hi,
The table in the second screenshot is not jTable actually. It's angular-ui's ui-grid component.
If you want to use a similar theme for the MVC side with jtable, you can take a look at this link. <a class="postlink" href="http://jtable.org/Themes">http://jtable.org/Themes</a> You can use the last example in this page. JTable comes with some themes. Last one in this page is Light theme - Gray. Just include it's css files in your project.
Hi,
Can you share your index.js as well ?
Hi,
That is the service name in angular. "abp.services.app" part is fixed. the last part is taken from your appService name on the service side.
For example, if you have a application service with name "ProjectAppService", then you can inject it in angular with "abp.services.app.project".
Using this service, you can call your AppService methods from angular directly.
Hi,
This is the Hangfire integration document <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Hangfire-Integration">http://aspnetboilerplate.com/Pages/Docu ... ntegration</a>
Hi,
You can take a look at this post <a class="postlink" href="http://keenthemes.com/forums/topic/aspnetzero-starter-kit-for-your-next-net-web-application-based-on-metronic/#post-6751">http://keenthemes.com/forums/topic/aspn ... #post-6751</a>
It does not offer a full solution but, you can start the progress with it.
Hi,
Then you can derive your entity from AuditedEntity<long> instead of CreationAuditedEntity<long>.
Hi,
It seems like you are not setting your form's enctype to multipart/form-data. It causes PostFile to be null and MVC sets the ModelState.IsValid to false in that case.
If you change your form definition to
<form action="/About" method="post" enctype="multipart/form-data">
.....
</form>
your problem will be solved I think.