Wise Duho

Results 8 comments of Wise Duho

@iammukeshm please take a look at this if you find some time

You can take a dependency on the account service, Register a new user while creating that domain object and associate the two... ``` var registrationResult= await _accountService.RegisterAsync(new RegisterRequest { Email...

Could you be a bit clearer with your question? I use this project template with PostgreSQL and it works just fine. First delete the existing migrations if any uninstall the...

> @duhowise Thanks for your contribution! Would you be able to change your target branch from 1.7 to 1.8? I cant seem to change the target branch could you help...

Change the order of operations like so: ``` if (ModelState.IsValid) { try { _context.Update(cust); _context.EnsureAutoHistory(() => new CustomAutoHistory() { UserId = Convert.ToInt16(User.FindFirstValue(ClaimTypes.NameIdentifier)) }); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if...

Application: UniVoting.Client.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.IO.FileLoadException at UniVoting.Client.App+d__1.MoveNext() at System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]](System.__Canon ByRef) at UniVoting.Client.App.OnStartup(System.Windows.StartupEventArgs) at...

@rupreetg removed Async Event Handlers. using blocking calls on all functions at startup _positions = new List(); try { var electionData=ElectionConfigurationService.ConfigureElection(Convert.ToInt32(Settings.Default.ElectionId)); BlobCache.UserAccount.InsertObject("ElectionSettings", electionData).Wait(); _positions = ElectionConfigurationService.GetAllPositions(); BlobCache.UserAccount.InsertObject("ElectionPositions", _positions).Wait(); } catch...

4.5----->4.7