Skip to content

Instantly share code, notes, and snippets.

View VictorSDK's full-sized avatar
🏠
Working from home

Victor SDK VictorSDK

🏠
Working from home
View GitHub Profile
@VictorSDK
VictorSDK / ObjectMapper.cs
Last active July 30, 2021 21:21 — forked from yemrekeskin/ObjectMapper.cs
using Automapper vs Custom Object Mapper(with reflection) vs Manual Mapper for data transformation of objects
using System;
using System.Diagnostics;
using System.Reflection;
using AutoMapper;
public class BaseModel
{
public Guid Id { get; set; }
public DateTime CreateDate { get; set; }