Hi,
Have you seen this forum post #1073 and included github issue <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/96">https://github.com/aspnetzero/aspnet-zero/issues/96</a>.
It might give you an idea about how to upgrade to latest version with less problems.
Hi,
Seems like, you are doing it right. Can you share the error message ?
Hi,
Does this error happens on your development machine when you are debugging with visual studio ?
Can you try to debug your project and send a screenshot of the same error ? Because in your screenshot javascript files are bundled and minified, it's very hard to understand what the error is.
Hi,
Do you have an assembly binding on your web config ? Adding something like this might solve your problem.
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
Hi,
Abp converts a datetime to local datetime if you use LocalClockProvider as Clock.Provider. I think this is probably the your case. Can you check the value of Clock.Provider ?
You can use UtcClockProvider but in that case, all datetimes will be stored in UTC in database and will be sent to client in UTC.
It seems like you are trying to initialize AbpWebModule twice. Can you share your website logs ? Maybe we can understand whic module is missusing the AbpWebModule.
Hi,
Details of the error should be written the logs.txt file under Logs folder of your web project.
Hi,
Yes you should add a dependency to AbpZero.EntityFramework.
Hi,
Abp and AspNet Zero does not offer such a feature for now. We have an issue for this one but we dont know when it will be implemented.
Maybe messages in this issue might give you an idea <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/50">https://github.com/aspnetboilerplate/as ... /issues/50</a>
Hi,
Can you a screenshot of your developer console where you catch this error ? Maybe we can figure out why it happens.