PixxelKick
PixxelKick
CC#
Created by Obsdark on 3/24/2025 in #help
Looking for some NoSQL database with this characteristics
I mean, if this is the exact use case, you should be able to yes
39 replies
CC#
Created by Geeked on 3/20/2025 in #help
React + .Net core api issue
Only in the case where you are failing silently and logs arent even happening (because it fails before it even goes inside your C# code) is when you gotta be worried
16 replies
CC#
Created by Geeked on 3/20/2025 in #help
React + .Net core api issue
Just add logging at any critical points of logic where a delay might happen in the flow of logic, reproduce the problem, and then inspect the logs for where the sudden slowdown occurs
The database is SQL Server, but we've ruled out the database itself as the primary cause, as it works quickly from my development environment.
Is it that exact same database that the "prod" app points at? Or is it a seperate "dev" DB you tested against? Its critical to be 100% sure you verify the behavior against the exact same database too Id recommend, as always, start with fixing your logging. 99% of debugging production issues is getting your logs to be sufficient to show where the issue happens.
16 replies
CC#
Created by Geeked on 3/20/2025 in #help
React + .Net core api issue
that entirely depends on your logging backend
16 replies
CC#
Created by Geeked on 3/20/2025 in #help
React + .Net core api issue
you should have some kind of logging on your backend since its aspnet, you should be able to inspect those logs and find out what errors are being thrown
16 replies
CC#
Created by Geeked on 3/20/2025 in #help
React + .Net core api issue
step 1 is pulling logs to figure out whats causing the 500 error
16 replies
CC#
Created by Geeked on 3/20/2025 in #help
React + .Net core api issue
...wat?
16 replies
CC#
Created by Eple on 7/18/2024 in #help
Question regarding multiple calls to AddHttpClient()
Your business layer shouldn't be aware of the service collection at all really. That's an application layer concern. Business layer really should just be defining all your services and not worrying about how the services get their dependencies. Application layer actually handles sewing it all together with DI and running it
11 replies
CC#
Created by Rillian on 7/17/2024 in #help
Help with EF Core polymorphic associations
If that is the case, then how I design the audit table us heavily influenced by the business requirements of said FE page and that's a "there's 100 ways to skin a cat" problem.
7 replies
CC#
Created by Rillian on 7/17/2024 in #help
Help with EF Core polymorphic associations
Do you actually have any need at all to display these audit logs in the application itself? If not, I'd just slap an enum on the column to discriminate but I wouldn't put any traversal properties on it. It'd be a write only table as far as EF core is concerned. Reading audit logs I usually leave to an admin with DB access unless the client explicitly requests the audit logs are exposed to the FE on some kind of admin page.
7 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
Only way that can happen is if you put a static field or static prop on the class for some reason. If you keep them readonly to just serve as effectively constant values though, it's still stateless really. Only if you did something weird like put a static list on the class that you kept adding stuff to would it be a problem
15 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
Which means you would want to Integration Test FooRepository, but you can Unit Test FooCalculationService
15 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
public static class FooRepository
{
public static void RecalculateFoo(AppContext ctx, int fooId)
{
var existingFoo = ctx.Db.Foos.SingleOrDefault(f = f.FooId == fooId);
var recalculation = FooCalculationService.RecalculateFoo(existingFoo);
existingFoo.Value = recalculation;
ctx.Db.SaveChanges();
}
}

public static class FooCalculationService
{
public static decimal RecalculateFoo(Foo existingFoo)
{
...
}
}
public static class FooRepository
{
public static void RecalculateFoo(AppContext ctx, int fooId)
{
var existingFoo = ctx.Db.Foos.SingleOrDefault(f = f.FooId == fooId);
var recalculation = FooCalculationService.RecalculateFoo(existingFoo);
existingFoo.Value = recalculation;
ctx.Db.SaveChanges();
}
}

public static class FooCalculationService
{
public static decimal RecalculateFoo(Foo existingFoo)
{
...
}
}
Note how FooCalculationService has no dependencies and is atomic. It merely takes in a plain ole Foo and does its logic. This is now very easy to unit test. No mocking needed, no dependencies, pure behavior, no side effects. It does it's atomic job and returns a value you can easily assert on. Meanwhile FooRepository depends on your db context and mostly just holds the logic for doing database stuff abd connecting to the Egress (ef core sql stuff)
15 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
No description
15 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
Which then brings up the "but then you cant moq how do you unit test?" Question, to which I've made this handy infographic:
15 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
Some people don't like this but it's served me very well. It reduces clutter, is less crud to maintain, and reduces inversion of control. 1. I don't make a service stateful unless I must, and even then I abstract out the stateful part to its own service and keep as much stateless logic in the static class as possible. 2. I don't add abstraction on top of the stateful service unless I need to mock it because it is "on the edge"
15 replies
CC#
Created by Gustavo Cruz on 7/16/2024 in #help
Overkill on the use of interfaces for Dependency Injection in Web APIs?
My rule of thumb is to only use DI for services that are stateful, or are involved in statefulness. Examples include: - Object pooling - HttpClientFactory stuff - Entity Franework DbContext - Configuration - Logging - Caching Etc, these various services actually are stateful in some way. For the vast majority of my logic I just use static classes and static methods. There's zero reason to use DI on a stateless singleton service, you just re-invented a static class when you do that.
15 replies
CC#
Created by douchebag on 7/12/2024 in #help
✅ Web API Controller Response JObject
80 replies
CC#
Created by douchebag on 7/12/2024 in #help
✅ Web API Controller Response JObject
C# is a strongly typed language
80 replies
CC#
Created by douchebag on 7/12/2024 in #help
✅ Web API Controller Response JObject
Was about to say, haha
80 replies