Base solution for your next web application

Activities of "ismcagdas"

Hi,

It might be related to customErrors on your web.config. Can you change it's value to "On" and then try again ?

Hi,

We are using this one in ASP.NET Zero <a class="postlink" href="https://github.com/fragaria/angular-daterangepicker">https://github.com/fragaria/angular-daterangepicker</a>. It's a wrapper for <a class="postlink" href="https://github.com/dangrossman/bootstrap-daterangepicker">https://github.com/dangrossman/bootstra ... angepicker</a>.

Have you take a look at it ?

Hi,

We have an issue about this bug. Please follow <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/322">https://github.com/aspnetzero/aspnet-zero/issues/322</a>. Probably, it will be fixed in a few days.

Hi,

Please see this forum topic #1264@ed1aaa0c-542a-4ce0-a435-68db54e710c7

Hi,

Do you have a javascript error on browser console ? And, did you implemented necessary changes for Register.cshtml and Register.js ?

Last thing, can you run the command "window.passwordComplexitySetting" in browser's developer console and share it's value ?

Hi,

You are invited.

Answer

Hi,

Don't put it in you DTO, because it represents an Entity and putting Entities in DTOs is not good. Just use LinQ join to get CreatorUserName from Users.

Hi,

This issue is resolved. If you share your github username, we can invite you to private repository, then you can see the issue and it's solution.

Hi,

If you look at this class you will see that Id field is used hard coded in places which returns value of entity Id. <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/763e718341a42ef1799d9ded5fae228f652d7a6b/src/Abp.EntityFramework/EntityFramework/Repositories/EfRepositoryBaseOfTEntityAndTPrimaryKey.cs">https://github.com/aspnetboilerplate/as ... maryKey.cs</a>

For example InsertAndGetId method.

And the methods which you pass the value of Id will not work because of CreateEqualityExpressionForId method in this class. Because it uses Id property hard coded as well. <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/763e718341a42ef1799d9ded5fae228f652d7a6b/src/Abp/Domain/Repositories/AbpRepositoryBase.cs#L255">https://github.com/aspnetboilerplate/as ... se.cs#L255</a>

Do you only need a different unique key name for a single entity ? If so, you can create a custom repository for this entity. <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Repositories#custom-repositories">http://aspnetboilerplate.com/Pages/Docu ... positories</a>

If all or most of your entities have a different key than Id, then you can override base entity methods like Get, InsertAndReturnId etc...

Hi,

It's hard to simulate same case. If you can share your project with a private email, we can take a look at it.

Showing 12271 to 12280 of 12740 entries