2
I’m not getting my application to find the table tag.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Dominio
{
[Table("Loja_Carrossel")]
public class Carrossel
{
public int Id { get; set; }
public string Nome { get; set; }
}
}
Thank you. It worked.
– Rafael Barbosa