I have the following problem, I have a service that runs at low level and connects to the mdf database of the sql server localdb. But this service is using a different account 'AUTHORITY NT \ SYSTEM' when that account connects to the database, it does not leave any other program with high level to connect to the database.
The opposite also happens, if you have any high-level program connected to the database, the service does not connect.
The connection string:
way = $"Data Source = (LocalDB)\\v11.0; AttachDbFilename = { MDF}; Integrated Security = True; Connect Timeout = 30 ";
Is it possible for the two accounts to connect at the same time?