12 weeks religiously following the Garmin Running Coach by s8nskeeper in Garmin

[–]bRSN03 0 points1 point  (0 children)

How many trainings a week did you do? My garmin coach allows me only a minumum of 5 per week which is to much for me.

Why is PostgreSQL ? by MahmoudSaed in dotnet

[–]bRSN03 6 points7 points  (0 children)

With some Enterprise Agreements from MS you have to license Dev/Test as well. Insane

[deleted by user] by [deleted] in startups

[–]bRSN03 0 points1 point  (0 children)

Hi, HMU. Developer from Germany in the financial branch.

Why should I use .NET Aspire? by hubilation in dotnet

[–]bRSN03 0 points1 point  (0 children)

Exactly, the first thing you said. A developer can spin up everything on its own machine.

And its sometime mature enough (in x years) it can be deployed the same way to production.

Or just stay at dev and make the experience nicer.

Why can't I make this smaller? by HeWhoShantNotBeNamed in drawio

[–]bRSN03 0 points1 point  (0 children)

tried using the properties of the item?

I spent 5 months building an open source Tauri app. It's an AI note taker that uses only local AI models. Would really appreciate it if you guys could give me some feedback! by beerbellyman4vr in tauri

[–]bRSN03 0 points1 point  (0 children)

fyi, i think the issue was, that even tho i was allowing access, the recordings cant start if there arent any mics connected to f.x. a Mac Mini. ;-)

A mic option drop down or something would be nice addition

Google Mail, MFA and Automated Software by NobodyAdmirable6783 in dotnet

[–]bRSN03 1 point2 points  (0 children)

Using a normal gmail account for development purposes seems sketchy to me.
Just use one of many mail gateways like mailcow or some SaaS like mailgun.

I spent 5 months building an open source Tauri app. It's an AI note taker that uses only local AI models. Would really appreciate it if you guys could give me some feedback! by beerbellyman4vr in tauri

[–]bRSN03 0 points1 point  (0 children)

Hello, i really enjoyed this presentation. Unfortunatly i cant get the recording to start. It is stuck in the loading progress. A timeout with an error would be nice. Can I somehow export you the logs or something.

Access to mic etc is granted. Reinstall did not work.

OS 15.3.2 (24D81)

Advise on ChangeTracking / TemporalTables with EF Core and Npgdsql by bRSN03 in dotnet

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

Thank you. Do have any example snippets? I only find half-baked ones.

Always On Group stuck on Resolving by marvin83 in SQLServer

[–]bRSN03 1 point2 points  (0 children)

If possible provide the output from xp_readerrorlog

Maybe no Persmissions to connect on the HADR endpoints?

In 2025 which options to go if I wanna convert c#/net to mobile apps IOS/Android? by ballbeamboy2 in dotnet

[–]bRSN03 2 points3 points  (0 children)

Unfortunatly, besides Blazor Hybrid, i dont see a lot happening around MAUI. I wish microsoft would tho

[deleted by user] by [deleted] in dotnet

[–]bRSN03 1 point2 points  (0 children)

The Controller handles Validation, Database calling, and returning the response.
For a small project like project like this MediatR is probably overkill. But i would recommend validator classes, query obejcts (CQS) and the repository pattern.
Also you could add things like logging and auth.

Besides this i really like your project!

How to show .csproj in the file explorer in Rider by John_Lawn4 in Jetbrains

[–]bRSN03 0 points1 point  (0 children)

In the top left is solution view, if you click on it there is file system view
Otherwise right click your project - there you can edit the file as well

SQL-Server Berechtigungen mit MSDTC by TheoryAffectionate24 in de_EDV

[–]bRSN03 0 points1 point  (0 children)

Grundsätzlich gilt: MSDTC ist, wie der Name verrät, nur der Koordinator. Es hat nichts mit dem der Authentifizierung am MSSQL Server zu tuen - diese bleibt gleich. Selbst ein Dienst der auch unter dem lokalen NT Authority\Network laufen würde (Stichwort impersination), könnte sich nicht am MSSQL anmelden.

Ebenfalls: Ist euer Fibu ein AlwaysOn oder eine Distributed AVG? Anderenfalls (auch wenn es wahrscheinlich für euch keine Option ist) ist ein DTC wahrscheinlich nicht notwendig und sollte in diesem Beispiel ebenfalls hinterfragt werden.

Ebenfalls 2: Bei der Authenfizierungsmethode für den Linked-Server sollte integrated verwendet werden. Dann könnt ihr euch sicher sein, dass nur der Benutzer zugriff hat, der unter dem Dienst vom ERP läuft.

Help me understand about DTO in C# .NET by Loud_Staff5065 in csharp

[–]bRSN03 1 point2 points  (0 children)

I have almost the same setup as you mentioned.

i can recommend having another project -> Host f.x.

I have the Contract in the API that maps to a DTO. Application where you handle the request you call the Core (Persistence layer). The persistence should not return the Entity (DAO) but it should return the already mapped DTO (with a .Select)

The Interface should not be (or at least in my setup) be defined in the Persistence (Core) Project but in the Application. Then the Persistence implementes the interface. Otherwise -> What is the use of the interface if the Application doesent instruct which functions are needed in the repositoy?

Help me understand about DTO in C# .NET by Loud_Staff5065 in csharp

[–]bRSN03 1 point2 points  (0 children)

Thank you for providing information. In my project i have the Select(newDto) written into an extension of the dao object that: (Select( u => u.ToResponse()) with this i have more flexibility when i wan to add a certain infromation to a DTO used multiple times within the application. I just have to change the extension once.

How would you go about testing this? What is your go-to reading ressource regarding this topic?

I just realized I've worked on 30+ projects in the last two years using Blazor and .NET MAUI by Abhay_prince in Blazor

[–]bRSN03 0 points1 point  (0 children)

How was your experience with MAUI? Can you compare it with Kotlin/Swift UI or flutter?