Skip to content

Instantly share code, notes, and snippets.

View alewkowicz's full-sized avatar

Ann Lewkowicz alewkowicz

  • Cincinnati, OH, USA
View GitHub Profile
@alewkowicz
alewkowicz / EventConfig.cs
Created July 14, 2017 16:33
Demonstrating AutoMapper.Collection issue
namespace TruckTech.Data.Config
{
internal class EventConfig : EntityTypeConfiguration<Event>
{
public EventConfig()
{
// Primary key is part of identifying relationship
HasKey(e => new { e.LogId, e.Id });
Property(e => e.Id)