Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在任何地方的一个漂亮的瘦Nuget包中是否有一个不错的 Extend 方法?
一个像jQuery.Extend一样工作的。
我问的原因是我有非常相似的视图模型和数据库模型。我想要一种快速转换的方法。
Automapper 完全符合我的要求。我将逻辑添加为视图模型扩展,所以我可以这样做:
var dbModel = myViewModel.ToMyDBModel();
I have a collection List and i need to reverse order of it. Everything works fine with
List<Point> myList = new ArrayList<Point>();
i can reve