Created
May 2, 2019 17:01
-
-
Save SafaElmali/5279bcdcd6368f3fd15b89f1c9d0d9d5 to your computer and use it in GitHub Desktop.
Product Entity class
This file contains hidden or 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
using System.ComponentModel.DataAnnotations; | |
using System.ComponentModel.DataAnnotations.Schema; | |
namespace EFCore.Models { | |
[Table ("PRODUCT")] | |
public class Product { | |
[Key] | |
[Column ("ID")] | |
public int Id { get; set; } | |
[Column ("NAME")] | |
public string Name { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment