Microsoft.SqlServer.Server.SqlFacetAttribute
Annotates the returned result of a user-defined type (UDT) with additional information that can be used in Transact-SQL.
namespace Microsoft.SqlServer.Server
{
public class SqlFacetAttribute : Attribute
{
public bool IsFixedLength { get; set; }
public bool IsNullable { get; set; }
public int MaxSize { get; set; }
public int Precision { get; set; }
public int Scale { get; set; }
public SqlFacetAttribute();
}
}