python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
C# .NET Core SQL Server Connectivity
Within my startup, I load a set of database connection strings from the appsettings.json file. The connection strings look as follows
"CoreConnectionString": "Server=localhost; Database...
DanConsultant
Votes: 0
Answers: 1
Read ConnectionString from Application Settings in Web.config
I'm working on a .NET Framework 4.5.2 legacy application.
I need the plain ConnectionString of my application, but I don't know how to read it.
Unfortunately the Web.config file of the app, does not h...
Bender.
Votes: 0
Answers: 2
How to use EF connection string and ADO.Net connection string in same project
In normal EF connection string which I use is like this:
<add name="NorthwindEntities"
connectionString="metadata=res://*/Models.Model1.csdl|res://*/Models.Model1.ssdl|res://*/...
Hgrbz
Votes: 0
Answers: 1
How can I learn the credentials for the Connection String in optionsBuilder.UseOracle(@"User Id=<>;Password=<>;Data Source=<>")?
I want to connect from my codebase which is console C# project to an Oracle database.
I am using Entity Framework Core 6.0:
using Microsoft.EntityFrameworkCore;
Console.WriteLine("Hello, ...
Errdonald
Votes: 0
Answers: 2