Hello,
PM> Add-Migration "Execute_Seed" To undo this action, use Remove-Migration. PM> Update-Database Applying migration '20171221220937_Execute_Seed'. Done.
The seed method not running.
Any idea plz ?
Update-Database No migrations were applied. The database is already up to date. Done. I need to make some changes in my Entities ?
Hello,
I add new default values to a table and i need to execute seed method only , any idea ?
Thanks
Hello,
Do you have any idea how can i configure Gmail Smtp please?
Thank you.
Hello ismcagdas,
It's work :) Thank you.
Hello,
I solve my problem by disable javascript debugging in visual studio :
<a class="postlink" href="https://stackoverflow.com/questions/42692472/visual-studio-2017-error-unable-to-start-program-an-operation-is-not-legal-in">https://stackoverflow.com/questions/426 ... t-legal-in</a>
Hello,
Visual studio 2017.
From the download page on asp.net zero website !!
Hello,
I noticed the same behavior yesterday at night the debugger is not attached and throw an exception.
Hello,
I need to show profile pictures in the datatable , is that gonna not impact the performance because i will get pictures of the 10 first users or more?
In the create-or-edit-user-modal component :
this._userService.getUserForEdit(userId).subscribe(userResult => {
this.user = userResult.user;
this.roles = userResult.roles;
this.canChangeUserName = this.user.userName !== AppConsts.userManagement.defaultAdminUserName;
this.allOrganizationUnits = userResult.allOrganizationUnits;
this.memberedOrganizationUnits = userResult.memberedOrganizationUnits;
**this.getProfilePicture(userResult.profilePictureId);**
Why make another call to the webapi to get the profilePicture why not do it in the getUserForEdit method ? is related to performance ?
Thank you. simed
Hello @ismcagdas,
I have already make the changes in datepicker component but the date selected not set in the value of the model :
<input datePicker type="datetime" [(selectedDate)]="user.startDate" name="startDate" class="form-control"/>
after i choose a date the text in the input is correct for exemple : 12/12/2017 but the value in user.startDate is undefined.
Thanks