System.ComponentModel.DataAnnotations.Schema.TableAttribute
namespace System.ComponentModel.DataAnnotations.Schema
{
public class TableAttribute : Attribute
{
public string Name { get; }
public string Schema { get; set; }
public TableAttribute(string name);
}
}