Skip to content

Instantly share code, notes, and snippets.

@vporton
Created September 17, 2019 17:06
Show Gist options
  • Save vporton/996680ab856fea1229f467828256ac96 to your computer and use it in GitHub Desktop.
Save vporton/996680ab856fea1229f467828256ac96 to your computer and use it in GitHub Desktop.
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BravoDB.Models.Tables
{
[Table("AdvShows")]
public class AdvShowsTable
{
[Key]
public int AdvOrderID { get; set; }
[Key]
public int ShowID { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment