What you seek is a ORM, Object-Relational Mapping, so are called these frameworks to map and facilitate access to bank entities through class models.
Here’s a great question with great answers talking about ORM: What are the functions of an ORM
Well, the framework ORM perhaps best known for Java
maybe it’s the Hibernate
, that even has a version for .NET
calling for NHibernate
, which is "concurrent" of EntityFramework
.
You can download and view the documentation on the official website http://hibernate.org/
If you want a tutorial with example configuration and code, here’s a good one to get you started: netbeans.org/Ibernate
Thank you very much for your help Ricardo!
– Lincoln Biancardi