Victor H
Victor H
CC#
Created by Lolo on 3/29/2025 in #help
Beginner in C# – Need a Learning Path for Backend Web Dev
I'm not saying it is wrong to learn, but it isn't in line with what his stated goals are
17 replies
CC#
Created by Lolo on 3/29/2025 in #help
Beginner in C# – Need a Learning Path for Backend Web Dev
He wants to do backend development, so why Razor Pages to create front-end too?
17 replies
CC#
Created by Lolo on 3/29/2025 in #help
Beginner in C# – Need a Learning Path for Backend Web Dev
Why are you recommending Razor Pages?
17 replies
CC#
Created by Victor H on 3/2/2025 in #help
Generic static factories
Thanks for your help but I'm not really a fan of either of these but I appreciate it ❤️
13 replies
CC#
Created by Victor H on 3/2/2025 in #help
Generic static factories
Yeah I figured you could use reflection, but wondering if it is possible without really.
13 replies
CC#
Created by Victor H on 3/2/2025 in #help
Generic static factories
An overridable method cannot be static so this will not work.
13 replies
CC#
Created by Victor H on 3/2/2025 in #help
Generic static factories
Yes
13 replies
CC#
Created by Victor H on 2/24/2025 in #help
Tighter type constraint
This might be really dumb, but would a "solution" be to... source generate every instance of Aggregate<TId>?
10 replies
CC#
Created by Victor H on 2/24/2025 in #help
Tighter type constraint
Ok, I appreciate your help 🙂 Thank you a lot
10 replies
CC#
Created by Victor H on 2/24/2025 in #help
Tighter type constraint
Or let me rephrase, any way to possibly improve the verbosity of the API
10 replies
CC#
Created by Victor H on 2/24/2025 in #help
Tighter type constraint
Do you have any suggestions on some way to get relatively close to it?
10 replies
CC#
Created by Victor H on 2/24/2025 in #help
Tighter type constraint
Oh, that's a bummer!
10 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
Thanks I will try!
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
Oh yeah I've seen this one with the Utf8JsonReader
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
So the custom json converter from STJ (system.text.json I assume) is the preferred way?
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
(I used the IFieldParser here still because it was just easier to copy the code)
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
Maybe I could turn this:
public class Source1PriceParser : IFieldParser<Price>
{
public Price Parse(JsonElement json)
{
var unit = json.GetProperty("unit").GetString() ?? "";
var amount = json.GetProperty("price").GetString() ?? "";
return unit == ""
? new FixedPrice(Convert.ToDecimal(amount))
: new PricePerUnit(Convert.ToDecimal(amount), unit);
}
}
public class Source1PriceParser : IFieldParser<Price>
{
public Price Parse(JsonElement json)
{
var unit = json.GetProperty("unit").GetString() ?? "";
var amount = json.GetProperty("price").GetString() ?? "";
return unit == ""
? new FixedPrice(Convert.ToDecimal(amount))
: new PricePerUnit(Convert.ToDecimal(amount), unit);
}
}
into this:
public class Source1PriceParser : IFieldParser<Price>
{
private record PriceDto(
[property: JsonPropertyName("unit")] string Unit,
[property: JsonPropertyName("price")] string Price,
);
public Price Parse(JsonElement json)
{
var price = System.Text.Json.JsonSerializer<PriceDto>(json);
if (price.Unit != null) etc
}
}
public class Source1PriceParser : IFieldParser<Price>
{
private record PriceDto(
[property: JsonPropertyName("unit")] string Unit,
[property: JsonPropertyName("price")] string Price,
);
public Price Parse(JsonElement json)
{
var price = System.Text.Json.JsonSerializer<PriceDto>(json);
if (price.Unit != null) etc
}
}
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
I'm not well versed in .NET to be honest but I did really enjoy the fact that I can extract field very easily by adding [JsonPropertyName(string)]
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
Do you have any suggestions on how I can make the System.Text.Json do as much lifting for me as possible?
32 replies
CC#
Created by Victor H on 2/1/2025 in #help
Parsing data from several sources into a common format.
It's one of those YAGNI moments hehe
32 replies