System.ComponentModel.DataAnnotations.Schema.TableAttribute
Specifies the database table that a class is mapped to.
namespace System.ComponentModel.DataAnnotations.Schema
{
public class TableAttribute : Attribute
{
public string Name { get; }
public string Schema { get; set; }
public TableAttribute(string name);
}
}