Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created July 2, 2018 16:11
Show Gist options
  • Save carloscds/5231b7e3e0a0c761f532c14db673adfe to your computer and use it in GitHub Desktop.
Save carloscds/5231b7e3e0a0c761f532c14db673adfe to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace LazyLoading
{
public class Customers
{
[Key]
public string CustomerID {get; set;}
public string CompanyName {get; set;}
public string ContactName {get; set;}
public virtual ICollection<Orders> Orders {get; set;}
public Customers()
{
Orders = new List<Orders>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment