Skip to content

Instantly share code, notes, and snippets.

View mcnkbr's full-sized avatar

Mertcan Kibar mcnkbr

  • istanbul
View GitHub Profile
@mcnkbr
mcnkbr / GenericRepository.cs
Last active February 29, 2024 05:35
Generic Repository and AutoMapper for .NET Entity Framework
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
using Common.Extensions;
using AutoMapper;
namespace Repository
{