Framework c # with windows Form Application

0

I am trying to develop an ERP in C # with windows Form App, I would like to know if there is any framework for this part.

I researched and found Entity, but I did not find out if I could use it in desktop development.

Anyone use any to speed development?

Thank you

    
asked by anonymous 07.03.2017 / 17:42

1 answer

2

The .NET itself is already a Framework, but inside it you have several libraries and one of them is Entity Framework , which aims to solve the data persistence problem based on the ORM concept. You can use Entity in your application, be it Desktop or Web, but for data persistence you are not required to use Entity, you can use another ORM framework like NHibernate , or even use SQL statements to perform the insert, update, selects, deletes the records of your system tables. First of all, keep in mind that this is a very important decision for the architecture of your system, and it depends on the database you will use.

    
08.03.2017 / 04:10