✅ Azure key vault with microservices
or
3 vault, 1 per each microservice + a shared one?...✅ A problem with field.
Entity
class. This class has "Position" field.
I also have a Player
class, that inherits from Entity
. Position
in Player
sets to an certain value (let's say 1, 1) every frame. But for some reason, if I'll try to access entity's position it'll only return the position that set through the constructor, no matter what I do. (it's 0, 0) figuratively speaking, how can I make it return 1, 1?...Main Menu load
✅ How to access specific fields from an [ObservableProperty] ObservableCollection<Object>?
✅ how do i override built-in methods?
==
operator, you can override a class to modify the behaviour of the __eq__
method which checks if two objects are equal.
if i wanted to do an XOR on a class that holds an internal value, how can i override it so it works on the internal value instead of the class itself?...✅ Find .NET course on Udemy
Issues with SKImageFilter
SKShaderTileMode.Repeat
(and all other SKShaderTileMode
s) do absolutely nothing compared to removing the option entirely, and I need SKShaderTileMode.Repeat
Code snippet:...✅ SQL Database Assignment - Simple question
C# quizzes
Can't Figure Out How to Generate MSIX on Publishing MAUI App
Docker build cache
✅ ternary select between static classes
Project ideas
DataGridViewCell won't display line breaks properly when editing
Passing one int from one script to another
Where can i put files so they will be in the same folder as the exe?
ImageSharp Alpha overwrite
confused on this error
void square_manager+<ListInvoices>d__5.MoveNext(): System.NullReferenceException: Object reference not set to an instance of an object.
void square_manager+<ListInvoices>d__5.MoveNext(): System.NullReferenceException: Object reference not set to an instance of an object.
manager_invoices.cs
...Handling exceptions when querying with EF
Users
database has Id
which is a BINARY(16)
for a smaller method of storing GUID, and it has a virtual column it can reference for IdText
which is the full version of the GUID in a string format. I'm passing the GUID string back to my application to use for future queries on courses or semesters in school bound to your user.
My login is...Why does Task 1 prints first instead of Task 3 - Async & Await