Skip to content

Instantly share code, notes, and snippets.

@SafaElmali
Created May 2, 2019 17:01
Show Gist options
  • Save SafaElmali/5279bcdcd6368f3fd15b89f1c9d0d9d5 to your computer and use it in GitHub Desktop.
Save SafaElmali/5279bcdcd6368f3fd15b89f1c9d0d9d5 to your computer and use it in GitHub Desktop.
Product Entity class
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