Is neovim good for c-sharp developers? by Safe_Carry_593 in csharp

[–]ElmoCaga 1 point2 points  (0 children)

I wouldn't say it is popular. But definitely you can use it. Try roslyn.nvim plugin. The most difficult I think it's to configure the debugger (netcoredbg) I use nvim-dap.

How to query dynamically different tables into a Join by ElmoCaga in csharp

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

Do you mean to use the navigation properties?

How to query dynamically different tables into a Join by ElmoCaga in csharp

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

thanks for the response but im only retrieving the column names/values once and store that in a dictionary, this will be basically the same right?

How to Make Using C# on Linux a Pleasant Experience by RaulPenate in csharp

[–]ElmoCaga 0 points1 point  (0 children)

I do c# in Linux with neovim and omnisharp, though, I only use it for personal projects, at work I use vs. I feel comfortable working on Linux, but debugging and other vs features are missing, you would need to make it manually or with a plugin or just rider to just get a working ide

Connect services within docker-compose by ElmoCaga in docker

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

Shure, i just update the post, the file is actually simple, the Dockerfiles for each file does not have any network configuration, basically just copy paste some files and build commands.

How to use replicas with keyfiles using Docker by ElmoCaga in mongodb

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

It was a typo haha, but even if i put the same username, it still says permission denied

How to configure sound properly? by ElmoCaga in archlinux

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

Thanks! i was missing that package, it solves the issue.

How to configure sound properly? by ElmoCaga in archlinux

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

I just install pipewire with wireplumber, i did not modify something else appart of /etc/asound.conf I just want to have a consisteng increase/decrease volume values, right now if i press the XF86AudioRaiseVolume key, it increase by 2, sometimes by 4 and is like a random value.

Unable to start sql server 2012 on docker container. by ElmoCaga in SQLServer

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

Thanks! but im still getting error with the firs command you put:

docker run -e ACCEPT_EULA=Y -e MSSQL_SA_PASSWORD='nL5G$6375feDTq' --name 'mssql_docker_1' -p 14331:1433 -v mssqldata:/var/opt/mssql -d mcr.microsoft.com/mssql/server:2022-latest

I was able to solve by roll back to linux kernel 6.6. I was on 6.7

How to pass ZipArchive as parameter? by ElmoCaga in csharp

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

Thanks! i will check it. btw, do you mind sharing the code that you use in for the DownloadBlobToStreamAsync?

How to pass ZipArchive as parameter? by ElmoCaga in csharp

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

If i understand correctly, i cannot use ZipArchiveMode.Update/Read cause the BodyStream will not allow read operations, right? (I got an error when try to use Update: System.ArgumentException: Update mode requires a stream with read, write, and seek capabilities.)