I want to call only stored procedures on database and fill my C# object according to the result. I just need a mapping file, and a fast reflection tool like Fasterflect found on CodePlex to create my own ORM.
Is there any ORM available with these feature for C# which has lightning fast performance ?
or what should I do to complete the above scenario in terms of mapping database objects ??
There are several implementations of .NET ORMs.
The framework already has two, Linq to Sql and Entity Framework. What type of database are you trying to target?
If you are looking for open source implementations check out
NHibernate
I really wouldn’t try building one yourself unless you have plenty of time! Most ORMs have a huge feature list.
I have used a product called LightSpeed from Mindscape. It support multiple rdbms, has a fantastic designer, superb linq capabilities and provides great performance.