Click here to Skip to main content
15,920,438 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralBack to .NET Framework Pin
Sander Rossel15-Jul-19 5:55
professionalSander Rossel15-Jul-19 5:55 
GeneralRe: Back to .NET Framework Pin
OriginalGriff15-Jul-19 6:26
mveOriginalGriff15-Jul-19 6:26 
GeneralRe: Back to .NET Framework Pin
abmv15-Jul-19 7:59
professionalabmv15-Jul-19 7:59 
GeneralRe: Back to .NET Framework Pin
Sander Rossel15-Jul-19 10:36
professionalSander Rossel15-Jul-19 10:36 
GeneralRe: Back to .NET Framework Pin
Marc Clifton15-Jul-19 10:12
mvaMarc Clifton15-Jul-19 10:12 
GeneralRe: Back to .NET Framework Pin
Sander Rossel15-Jul-19 10:35
professionalSander Rossel15-Jul-19 10:35 
GeneralRe: Back to .NET Framework Pin
#realJSOP15-Jul-19 13:30
professional#realJSOP15-Jul-19 13:30 
GeneralRe: Back to .NET Framework Pin
Sander Rossel15-Jul-19 22:53
professionalSander Rossel15-Jul-19 22:53 
#realJSOP wrote:
So how is the crappy data format affecting the usability of .net framework vs .net core?
It isn't.
I just had some issues going back to .NET Framework, but, unrelated, that wasn't my biggest problem because that is the data format.
#realJSOP wrote:
How is .net core a panacea?
I wouldn't call it a panacea, it has its issues (like no WCF/SOAP support).
But it comes with DI out of the box, it's right there and all your need to do is add a few lines of services.AddTransient<ISomeService, SomeService>();
The same goes for logging, just add some loggers through extensions and inject ILogger.
Or EF Core for that matter (turned out I can just use EF Core in .NET Framework too).
And the configuration is read from a JSON file, and nowhere has it been as big as my smallest .NET Framework XML config file.
It's also super easy to map JSON objects to .NET classes, so instead of putting everything in <appSettings> just add "SomeSetting": { "SomeSubSetting": { "SomeSubSubSetting": [ "v1", "v2" ] } } and it works.
And with the ConfigurationBuilder I can just add builder.AddAzureKeyVault("[uri]"); and it'll add all my KV secrets like they were in my config file to begin with.
Maybe it's not so much .NET Framework, but WCF, which is rather archaic in 2019 (no easy support for DI, so I had to use Unity or Windsor or MapSomething, went with a Unity plugin).
I have it all set up now, but it cost me a while to figure it out.

GeneralRe: Back to .NET Framework Pin
Mark_Wallace15-Jul-19 12:56
Mark_Wallace15-Jul-19 12:56 
GeneralThought of the Day Pin
OriginalGriff15-Jul-19 4:56
mveOriginalGriff15-Jul-19 4:56 
QuestionRe: Thought of the Day Pin
lopatir15-Jul-19 5:07
lopatir15-Jul-19 5:07 
GeneralRe: Thought of the Day Pin
PIEBALDconsult15-Jul-19 5:23
mvePIEBALDconsult15-Jul-19 5:23 
GeneralRe: Thought of the Day Pin
W Balboos, GHB15-Jul-19 5:53
W Balboos, GHB15-Jul-19 5:53 
GeneralRe: Thought of the Day Pin
DRHuff15-Jul-19 6:05
DRHuff15-Jul-19 6:05 
GeneralOh Joy! The balloon has gone up... Pin
glennPattonWork315-Jul-19 2:39
professionalglennPattonWork315-Jul-19 2:39 
GeneralRe: Oh Joy! The balloon has gone up... Pin
Dr.Walt Fair, PE15-Jul-19 6:56
professionalDr.Walt Fair, PE15-Jul-19 6:56 
GeneralGoogle / Amazon / Whatever assistants. Pin
OriginalGriff14-Jul-19 22:58
mveOriginalGriff14-Jul-19 22:58 
GeneralRe: Google / Amazon / Whatever assistants. Pin
Rage14-Jul-19 23:15
professionalRage14-Jul-19 23:15 
GeneralRe: Google / Amazon / Whatever assistants. Pin
PeejayAdams14-Jul-19 23:26
PeejayAdams14-Jul-19 23:26 
GeneralRe: Google / Amazon / Whatever assistants. Pin
Kornfeld Eliyahu Peter14-Jul-19 23:43
professionalKornfeld Eliyahu Peter14-Jul-19 23:43 
GeneralRe: Google / Amazon / Whatever assistants. Pin
musefan15-Jul-19 0:15
musefan15-Jul-19 0:15 
GeneralRe: Google / Amazon / Whatever assistants. Pin
OriginalGriff15-Jul-19 0:23
mveOriginalGriff15-Jul-19 0:23 
GeneralRe: Google / Amazon / Whatever assistants. Pin
OriginalGriff15-Jul-19 0:31
mveOriginalGriff15-Jul-19 0:31 
GeneralRe: Google / Amazon / Whatever assistants. Pin
musefan15-Jul-19 1:18
musefan15-Jul-19 1:18 
GeneralRe: Google / Amazon / Whatever assistants. Pin
Mark_Wallace15-Jul-19 8:37
Mark_Wallace15-Jul-19 8:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.