m.abid1985
New member
- Joined
- Mar 12, 2021
- Messages
- 1
- Programming Experience
- 5-10
I am using Dapper. Is any other best option rather than Dapper?. Please confirm.
	
		
			
		
		
	
				
			I hope you are only looking at .NET 6 and .NET 7. Recall that .NET Core 3.x, .NET 4, and .NET 5 are all out of support by Microsoft.
Checkout www.sqlplus.net best ORM for C# and SQL
I did not see any evidence/examples of how it deals with object relationships and object graphs.
class Entity{
  OtherEntity Parent {get;set;}
  ICollection<OtherOtherEntity> BlahChildren{get;set;}
}