0

how do you map data from C# to SQL server

mapping

14th Feb 2020, 9:52 AM
Mwita Mike
Mwita Mike - avatar
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/
15th Feb 2020, 11:42 AM
Tomasz
Tomasz - avatar
0
thanks
21st Feb 2020, 3:51 PM
Mwita Mike
Mwita Mike - avatar