0
how do you map data from C# to SQL server
mapping
3 Answers
0
Did you consider to use Entity Framework Core?
EF Core is an object-relational mapper (ORM). Object-relational mapping is a technique that enables developers to work with data in object-oriented way by performing the work required to map between objects defined in an application's programming language and data stored in relational datasources.
In a nutshell it allows you to get rid of hardcoded queries, and instead you can work with a tables as with any other collection using C#.
https://docs.microsoft.com/en-us/ef/core/
0
thanks