Skip to content

Instantly share code, notes, and snippets.

@hossien014
Created February 4, 2024 12:38
Show Gist options
  • Save hossien014/85cc06dac9ceae5210ad9b5571141fce to your computer and use it in GitHub Desktop.
Save hossien014/85cc06dac9ceae5210ad9b5571141fce to your computer and use it in GitHub Desktop.
public class Order {
public int Id { get; set; }
//این متغیر یک ستون هم اسم خود در دیتا بیس میسازد
public int CustomerId { get; set; }
//دو خط زیر مشخص می کند که متغیر بالا در واقع یک کلید خارجی ولی خودشان چیز به دیتا بیس اضافه نمی کنند
[ForeignKey("CustomerId")]
public Customer Customer {get ; set;} // Navigation Property
public DateTime OrderDate { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment