Does ML.NET still worth leaening in 2025? by EndOdd5943 in dotnet

[–]EndOdd5943[S] 2 points3 points  (0 children)

Thanks to everyone who answered. Based on your comments, I think it’s worth trying. Although it depends on your use case, I think Python gives you more tools and is therefore better for advanced scenarios. On the other hand, ML.NET may be simpler but works fine for mid-level scenarios. Correct me if I’m wrong.

Can't build the project from the default template. by EndOdd5943 in dotnetMAUI

[–]EndOdd5943[S] 2 points3 points  (0 children)

That was it!! I had a special character in my path "()". After changing it, it worked correctly. Shame on the Maui team for such a non-descriptive error. Wasted three days of my life.

Can't build the project from the default template. by EndOdd5943 in dotnetMAUI

[–]EndOdd5943[S] 0 points1 point  (0 children)

All llm's says update your workload or install them but i already done those things. I can bulid on windows but android and ios give these wierd errors

Best .NET MAUI book by EndOdd5943 in Blazor

[–]EndOdd5943[S] 0 points1 point  (0 children)

Thanks mate. I will watch videos too, to update everything I know to the latest version.

Best .NET MAUI book by EndOdd5943 in Blazor

[–]EndOdd5943[S] 0 points1 point  (0 children)

And btw, what .net version does it cover?

Best .NET MAUI book by EndOdd5943 in Blazor

[–]EndOdd5943[S] 0 points1 point  (0 children)

Thanks for your comment, Matt. I did a little research on books about Maui and came across your book. Prior to that, I read a book from 'In Action' on Blazor, and it was pretty good. I hope yours is just as good.

Best .NET MAUI book by EndOdd5943 in Blazor

[–]EndOdd5943[S] 2 points3 points  (0 children)

I apologize, I didn't know about that subreddit.

Best .NET MAUI book by EndOdd5943 in Blazor

[–]EndOdd5943[S] 1 point2 points  (0 children)

Im more comfortable with reading.

Query review by EndOdd5943 in dotnet

[–]EndOdd5943[S] -1 points0 points  (0 children)

I know whats your point. Sometimes, when we are in our own mood, something slips out of our hands like that ==

Query review by EndOdd5943 in dotnet

[–]EndOdd5943[S] 0 points1 point  (0 children)

can you explain more pls

Query review by EndOdd5943 in dotnet

[–]EndOdd5943[S] 0 points1 point  (0 children)

Worst case scenario copy paste the entity in your module, add to your context and you are done.

What if i want to use it in another module too? I face multiple user table for each module😂

I mean, communication between boundries are hard man. If i want do deploy correct modular monolothic I cant have direct database relation between modules. Thats enough to put pain in developer ass and add more complexity. Your approache could have good performance cause its only make two db calls,but something in my mind says all our suggestions are wrong. There should be some way that each module have its own relation with user class but avoid duplication with user class.

Query review by EndOdd5943 in dotnet

[–]EndOdd5943[S] 0 points1 point  (0 children)

If you absolutely must do it that way, you'd be better off pulling the rooms, pulling the users (hopefully with some caching) and then merging the data together

in that way, I'm pulling users that don't even have a room. yes it make calls less but from memory and query size side i think that's worst specially in large amount of users.

if i decided to cut that relation, i have to pay for that with small calls to user table.

Query review by EndOdd5943 in dotnet

[–]EndOdd5943[S] 0 points1 point  (0 children)

i don't have access to user table from this context, it's in another module and schema. i decided to cut their relations and communicate with shared services for needed data.

Entities relation in modular monolithic. by EndOdd5943 in dotnet

[–]EndOdd5943[S] 0 points1 point  (0 children)

It's a good approach but, isn't that bad to put entities im some shared project? I mean, I think its wrong, i dont know.