2012-10-12 12:37:55 -02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Persistence.DatabaseAnnotations
|
|
|
|
|
|
{
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
|
|
|
|
public class ForeignKeyAttribute : ReferencesAttribute
|
|
|
|
|
|
{
|
|
|
|
|
|
public ForeignKeyAttribute(Type type) : base(type)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string OnDelete { get; set; }
|
|
|
|
|
|
public string OnUpdate { get; set; }
|
|
|
|
|
|
|
2012-10-17 10:12:30 -02:00
|
|
|
|
public string Name { get; set; }//Used to override Default naming: FK_thisTableName_refTableName
|
2012-10-12 12:37:55 -02:00
|
|
|
|
}
|
|
|
|
|
|
}
|