Problem I have been building my data access layer and performance is key for the project I am working on. […]
Tag: .net-core
Is this implementation of signed URLs reasonably secure?
Problem I’m trying to implement signed URLs for short lived access to static files. The idea is: generate an URL […]
Bidirectional Dictionary
Problem The management of bidirectional mappings is a reoccuring topic. I took the time to write an (hopefully) efficient implementation. […]
Get all children recursively in Entity Framework Core
Problem In Entity Framework Core we can have recursive entities. But we cannot do an “Include” for these recursives (can […]
C# Toy Robot Simulator
Problem I did this coding exercise for a potential employer who failed it on the basis of unspecified style and […]
Is this implementation of signed URLs reasonably secure?
Problem I’m trying to implement signed URLs for short lived access to static files. The idea is: generate an URL […]
Repository Pattern and SOLID principles [closed]
Problem Closed. This question is off-topic. It is not currently accepting answers. Closed 3 years ago. Code not implemented or […]
Retrieving OS Platform .NET Core
Problem I’m retrieving the operating system platform with .NET Core with system.runtime.interopservices I have created the code below and was […]
Calling multiple clients from API controller methods?
Problem Hi I have a requirement where in I have to call two different client methods from same api in […]
RawSqlQuery minimizing risk of field name confusion
Problem Is there a way to make the following code more maintainable? public static DtoNumOrderedNumDone GetNumOrderedNumDone(int jobTaskId) { const string […]