Skip to content

Commit

Permalink
Merge pull request #129 from BethMassi/master
Browse files Browse the repository at this point in the history
Add samples for LINQ set operations
  • Loading branch information
cartermp committed Nov 17, 2015
2 parents ca0fdef + 12c8fe0 commit 738c1bf
Show file tree
Hide file tree
Showing 14 changed files with 839 additions and 0 deletions.
16 changes: 16 additions & 0 deletions samples/linq/csharp/setoperators/Customer.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System.Collections.Generic;

namespace SetOperators
{
public class Customer
{
public int CustomerId { get; set; }
public string CustomerName { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string Phone { get; set; }
public IEnumerable<Order> Orders { get; set; } = new List<Order>();
}
}

0 comments on commit 738c1bf

Please sign in to comment.