Hi,
Thank you for informing us and for your work. We will solve this issue in the next release. You can follow this issue <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/388">https://github.com/aspnetzero/aspnet-zero/issues/388</a>
Hi,
cmd location must be in the root of *.EntityFramework project. Did you tried in that way ? If so, can you send a screenshot of your command line.
Thanks.
Hi,
You need to implement IIdentityMessageService for phone verification. There is a simple implementation in the project which only logs given information <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/blob/8a23155138d3178d5529d4389420669014ec1248/src/MyCompanyName.AbpZeroTemplate.Core/Identity/IdentitySmsMessageService.cs">https://github.com/aspnetzero/aspnet-ze ... Service.cs</a>.
After implementing this for phone verification use it in UserManager class instead of IdentitySmsMessageService.
Hi,
You have already done more than enough :). I'm glad that it's worked for you.
I know that the solution provided here <a class="postlink" href="https://github.com/SignalR/SignalR/issues/3670">https://github.com/SignalR/SignalR/issues/3670</a> is not secure but I couldn't find a better solution yet. For a temporary solution, you can implement a simple cryptograph instead of returning raw data.
There are several issues in signalR repository, you can search "azure + negotiate". This one is the same actually <a class="postlink" href="https://github.com/SignalR/SignalR/issues/3659">https://github.com/SignalR/SignalR/issues/3659</a>.
Adding machineKey to web.config is an offered solution but didn't worked for me. I have used this site <a class="postlink" href="http://www.allkeysgenerator.com/Random/ASP-Net-MachineKey-Generator.aspx">http://www.allkeysgenerator.com/Random/ ... rator.aspx</a> to generate a new machine key but didn't have much time to test this one.
Hi,
There must be a more detailed error message in Logs.txt file under your web project. Can you send it ?
Hi,
You can find the version in AppVersionHelper class or in the bottom left corner of the page after user logins the application.
In order to fix this, first of all you need to upgrade to latest metronic. Then, compare this file with your version and apply changes <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/blob/5fef9a8e7b894fd9586eba9f8dc50bbd3e629b2f/src/MyCompanyName.AbpZeroTemplate.Web/App/common/views/layout/sidebar.js">https://github.com/aspnetzero/aspnet-ze ... sidebar.js</a>
And then, you also need to appl changes in these two commits <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/commit/0d068a5cc565dd1788453cadcf8f2d647fae4d14#diff-8db7bc3ee78b2c681855121e6a81e509">https://github.com/aspnetzero/aspnet-ze ... 1e6a81e509</a> <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/commit/0a79865a2b50055e38a15a0613747da42f5c9ee6">https://github.com/aspnetzero/aspnet-ze ... a42f5c9ee6</a>
All of those are small changes. Please let us know if the problem continues.
Can you check that all ABP dll versions are same in your solution ?
I didn't understand why your machine name is appended to dll names. Is it only *.Application project or all the projects ?
Hi,
In order to call a SP, you can create a custom repository and call the SP inside it. You have access to DbContext in custom repository methods. An example would be
var entities = Context.Database.SqlQuery<YourEntity>("NameOfSP @Param1", new SqlParameter("@Param1", 1)).ToList();
Moving an existing project to ABP is not easy, especially when creating entities. You can use a custom tool for generating your POCO classes. This might be a good one <a class="postlink" href="https://visualstudiogallery.msdn.microsoft.com/ee4fcff9-0c4c-4179-afd9-7a2fb90f5838">https://visualstudiogallery.msdn.micros ... 2fb90f5838</a>
This will not give you a complete solution I think but it saves you so much time.
Hi,
If you have a sample project for this, it would be great if you send it to us.
Thanks for your work.
Hi,
You can also check this document if you need more help. <a class="postlink" href="https://aspnetzero.com/Documents/Extending-Existing-Entities">https://aspnetzero.com/Documents/Extend ... g-Entities</a>