I was looking to mapper which map my database model class to Viewmodel class.
I found AutoMapper, But It has performance issue, as it takes around 7-8 times than manual mapping, and also major drawback with AutoMapper is It retrieve all the column from database the perform filter.
So I found Mapster which takes almost same time as of manual mapping. But when I try to install it through nuget Package , It give me exception and fail the installation.
This what happening
How to resolve this issue. Or please recommend any other mapper.