WAASUL
Data retrieval EF-core
I have a question regarding this. The department info is quite important on the client side. I do have a query that fetches the departments. I could for instance just get the department on the client side. The problem is that it makes the process very complicated. Also what if the departments on the client side are dirty meaning outdated or another user just created another department on some other device. All of a sudden the department will not be available. Should i also return the department when returning the shifts?
4 replies
Azure Managed Identity
I have spent almost 8 hours trying to find the issue. For some reason managed identity is not working in production mode. It seems to be unable to load the secrets. Even though I have successfully defined the resource access polices. The code was working fine before I went to sleep. All of a sudden when I woke up its not working? Can anyone please help?
25 replies
Time conversion issue?
What am I missing here? The date, start and end are in local. For some reason this is returning true even though if the current start and end are in the past? I have written some tests, all of them are passing locally. When testing from the client, the behavior is not the same. The client is calling the server.
11 replies
Dublicate Properties in Tables?
I have a table named
Users
and one named Organizations
. The relation between them is many to many. The joining table is called OrganizationMember
. I'm wondering whether it would be a good idea, to store certain properties from the User
table inside the OrganizationMember
. Such as Email
, & Full Name
and AvatarUrl
. The reason being is that OrganizationMember
will be used very much. I don't want to modify my queries to include the User
every time. Any suggestions would be appreciated.6 replies
✅ Suggestion on file upload?
When uploading file to azure storage. Should I upload the files through the server (api)? or is there another way. The thing that scares me is that if multiple people upload at the same time than we will have a memory issue. The clients in this case are mobile apps? Any insights would be appreciated.
45 replies
Verify Google Id Token: FormatException
I'm using google sign in on my client. Before authenticating the user I want to Verify the ID Token which I get from the client. On the server side. I'm trying to validate the ID Token (jwt) by using
Google.Apis.Auth
nuget package. But I'm getting a format exception. Here is the code:
2 replies