In my C# application I am unable to find my how my database is connected and I am unable to get the new changes in database ?

Dineshkumar.S 446 Reputation points
2022-09-05T10:32:49.39+00:00

I am unable to find how my database accessing my data in my application and I am getting some unwanted function is mapped in the flow
I dont want my code enter the below mentioned functionality
can anyone suggest me some logic ?
for the reference
private static Type GetTypePlugin(string assemblyQualifiedName)
{
foreach (var pluginAssembly in EYE.Model.Utility2.LoadedPlugins)
{
foreach (var type in pluginAssembly.GetTypes())
{
if (type.AssemblyQualifiedName.Equals(assemblyQualifiedName))
return type;
}
}
return null;
}

.NET CLI
.NET CLI
A cross-platform toolchain for developing, building, running, and publishing .NET applications.
322 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,233 questions
{count} votes