You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Entities/Annotations/TableExtensionAttribute.cs

11 lines
391 B

2 years ago
namespace Connected.Entities.Annotations
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
public sealed class TableExtensionAttribute : SchemaAttribute
{
public string? KeyColumns { get; set; }
public string? RelatedTableId { get; set; }
public string? RelatedKeyColumns { get; set; }
}
}