1
Answer

From Deskstop turn to web Development

Rolando Puno

Rolando Puno

2y
590
1

Hello Guys,

Asking your benevolent idea i came fron deskstop application development using c#.net now i am turning to web base development. Now my question is what is the best tools to do in web development same as in windows application its so safe.
1. nodeJs
2. asp.net
3.asp.net core

Then also what is the best EF Core or ADO.NET?

Thanks

Landz

Answers (1)
5
Naimish Makwana

Naimish Makwana

136 13.8k 200.1k 2y

Hello Rolando,

All three options you mentioned are viable for web development, but the best choice depends on your specific needs and preferences. Here's a brief overview of each:

  1. Node.js: This is a popular platform for building server-side applications in JavaScript. It's known for its scalability and speed, making it a good choice for applications that require real-time updates or high performance.

  2. ASP.NET: This is a web application framework developed by Microsoft. It's designed to work with the .NET platform, and it's a good choice if you're already familiar with the .NET ecosystem. ASP.NET is known for its robustness and security, and it's well-suited for enterprise-level applications.

  3. ASP.NET Core: This is a newer version of ASP.NET that's cross-platform and open-source. It's designed to be lightweight and modular, making it a good choice for building modern, cloud-native applications.

As for your question about EF Core vs ADO.NET, again, the choice depends on your specific needs. EF Core is an Object-Relational Mapping (ORM) framework that allows you to work with databases using object-oriented code, while ADO.NET is a low-level data access framework that gives you more control over the data access process. EF Core is generally easier to use and provides more abstraction, while ADO.NET is more flexible and performant. If you're building a small to medium-sized application, EF Core may be a good choice, while ADO.NET may be a better choice for larger, more complex applications.

Thanks

Naimish Makwana

Accepted