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.
11 lines
391 B
11 lines
391 B
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; }
|
|
}
|
|
}
|