curiouswebster
asked on
ORM for Node.js?
As a C# developer, I am used to NHibernate and Entity Framework. What can a Node developer use to bring ORM functionality to Node?
In the past, with Node, I have only used SQL command embedded into the code, then executed. I'm am sure, even then, this was a worst practice.
What is the best practice way, using Node.js, to make use of an ORM?
(I am not sure if I am ready for a JSON database like MongoDB unless it helps you answer this question)
Thanks
In the past, with Node, I have only used SQL command embedded into the code, then executed. I'm am sure, even then, this was a worst practice.
What is the best practice way, using Node.js, to make use of an ORM?
(I am not sure if I am ready for a JSON database like MongoDB unless it helps you answer this question)
Thanks
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks