Skip to content

Instantly share code, notes, and snippets.

@Guifgr
Created March 22, 2022 20:48
Show Gist options
  • Save Guifgr/6c7985760b387d1fbbd09c0a7afa3c5a to your computer and use it in GitHub Desktop.
Save Guifgr/6c7985760b387d1fbbd09c0a7afa3c5a to your computer and use it in GitHub Desktop.
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace Domain.Models
{
[Keyless]
[Table ("NOME_VIEW", Schema ="SCHEMA")]
public class ProgramacaoDoGasView
{
[Column ("NOME_COLUNA")]
public string Name { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment