Framework c# with windows Form Application

Asked

Viewed 476 times

0

I’m looking to develop a C# ERP with windows Form App, I wonder if there is any framework for this part.

Because I searched and found Entity, but I couldn’t find if I can use it in desktop development.

Someone uses some to expedite development?

Thank you

  • can work on desktop

  • 1

    If you are developing with . NET, it is itself a framework. Entity is a ORM.

  • Okay Thanks for the comments, but then if using visual studio I’m already using a framework ?

  • Yes friend, if you are using the visual studio, you are already using the . Net Framework. Visual Studio is our desktop environment, where we write our code and use the components and functionality it offers, we call it the IDE. A . Net framework is the "service" that takes what we do in VS and converts it into machine language for the computer to interpret. summarizing the framework has the resources and the visual studio is the means to use these resources

1 answer

2


the . Net is already a Framework, but within it you have several libraries and one of them is the Entity Framework, which aims to solve the data persistence problem based on the ORM concept. You can use the Entity in your application, whether Desktop or Web, but for data persistence you are not required to use the Entity, you can use another ORM framework like the Nhibernate, or even use SQL statements to perform the records of your system’s tables' Insert, update, selects, Deletes. First of all keep in mind that this is a very important decision for the architecture of your system, even depends on the database you will use.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.