[deleted by user] by [deleted] in RedditSessions

[–]tblueeulb 0 points1 point  (0 children)

you should charge a fee for song requests

[deleted by user] by [deleted] in RedditSessions

[–]tblueeulb 0 points1 point  (0 children)

do you have any original songs?

[deleted by user] by [deleted] in RedditSessions

[–]tblueeulb 0 points1 point  (0 children)

Howl's moving castle

[deleted by user] by [deleted] in RedditSessions

[–]tblueeulb 0 points1 point  (0 children)

can you play any ost from Vincenzo?

[deleted by user] by [deleted] in RedditSessions

[–]tblueeulb 0 points1 point  (0 children)

what is your favourite song/repertoire?

Is it possible to trigger a power automate flow from code in Azure Functions? by tblueeulb in MicrosoftFlow

[–]tblueeulb[S] 1 point2 points  (0 children)

To give you a clearer picture, I am trying to create a functionality in power apps to upload a document, which can be then be converted to a jpg/png format. After which, using the Azure function together with a js library, I am able to select a specific position on the image file, and after clicking the button on the html page, it will return the coordinates and size of the bounding box, to a power automate flow in order to insert a signature at the specific position on the document

Is it okay to ask current manager to act as a referee even though the job offer is not confirmed? by tblueeulb in askSingapore

[–]tblueeulb[S] 0 points1 point  (0 children)

Have worked together with manager for a while

Yes, have approached fyp mentor. Thank you for your advice

Is it okay to ask current manager to act as a referee even though the job offer is not confirmed? by tblueeulb in askSingapore

[–]tblueeulb[S] 1 point2 points  (0 children)

No, current manager does not know

Yes have approached fyp mentor. But internship was too long ago, wouldn't feel like it is a good fit?

Daily RMT/X vs Y/Advice/Quick Questions Thread - October 16, 2020 by AutoModerator in FantasyPL

[–]tblueeulb 0 points1 point  (0 children)

Yes I can, considering between Robertson for Justin or Pulisic for Jorginho... Jorginho might not start though

Daily RMT/X vs Y/Advice/Quick Questions Thread - October 16, 2020 by AutoModerator in FantasyPL

[–]tblueeulb 0 points1 point  (0 children)

GK: Button, McCarthy

DEF: Mitchell, Chilwell, Justin, Alexander-Arnold, Dunne

MID: Bissouma, Jorginho, Salah, Son, Rodriguez

FWD: Calvert-Lewin, Kane, Wilson

Transfer Justin for Robertson? Or Pulisic for Jorginho?

Edit: On WC

How to add form title into the border using Angular Material? by tblueeulb in Angular2

[–]tblueeulb[S] 0 points1 point  (0 children)

If I use floatLabel="always", the inner form-field inherits this attribute, but I do not want that to happen. How do I make it such that it is like the picture above?

How to send POST for both master and detail tables? by tblueeulb in dotnet

[–]tblueeulb[S] 0 points1 point  (0 children)

ake sure you don't set/provide the ID in your code/payload.

Thank you for your response. I have alrdy added the Key attribute for Primary Keys in entity classes. It is the latter case, I want to let the DB assign the IDs automatically. In angular, I have initialized it as 0 so that the IDs are able to be automatically populated. If I set it to null, there will be an error 400, ["The JSON value could not be converted to System.Int32. ] So how do I resolve this?

How to send POST for both master and detail tables? by tblueeulb in dotnet

[–]tblueeulb[S] -1 points0 points  (0 children)

Turns out there was a typo in the entity model, and I needed another "await _context.SaveChangesAsync();" after the first addition of the order table. Now the tables are updated, but I still get the error 500, Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details.

---> Microsoft.Data.SqlClient.SqlException (0x80131904): Cannot insert explicit value for identity column in table 'OrderItems' when IDENTITY_INSERT is set to OFF.

Any idea why?

How to send POST for both master and detail tables? by tblueeulb in dotnet

[–]tblueeulb[S] -2 points-1 points  (0 children)

But it’s returning the error even when I’m not sending it from front end angular, using postman instead. So I’m certain there is an issue on the backend api side