I'm working on a Webforms project and I was looking at implementing node.js and issnode. We are using:
- Web Forms
- IIS
- C#
- Entity Framework
- SQL Server
We have a page that takes a while to load and were looking at ways to improve its speed. There are a few counts that are being displayed on the page that are useful but are causing the page to load slowly. (We are displaying the total # of tasks, # of people in a group, and number of groups).
I was thinking that I'd be able to directly call my c# code from the node.js file. From the examples I've seen and what I've read it doesn't seem that is the solution I should be looking for. Since we are using EF and I'm not writing SQL queries it looks like I should be interacting with services.
So my question is, can I use Node.js to call my C# methods?