Created
February 4, 2024 12:38
-
-
Save hossien014/85cc06dac9ceae5210ad9b5571141fce to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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