24 lines
656 B
C#
24 lines
656 B
C#
using NPoco;
|
|
using Umbraco.Core.Persistence.DatabaseAnnotations;
|
|
using Umbraco.Core.Persistence.Dtos;
|
|
|
|
namespace Umbraco.Tests.LegacyXmlPublishedCache
|
|
{
|
|
[TableName("cmsPreviewXml")]
|
|
[PrimaryKey("nodeId", AutoIncrement = false)]
|
|
[ExplicitColumns]
|
|
internal class PreviewXmlDto
|
|
{
|
|
[Column("nodeId")]
|
|
[PrimaryKeyColumn(AutoIncrement = false)]
|
|
[ForeignKey(typeof(ContentDto), Column = "nodeId")]
|
|
public int NodeId { get; set; }
|
|
|
|
[Column("xml")]
|
|
[SpecialDbType(SpecialDbTypes.NTEXT)]
|
|
public string Xml { get; set; }
|
|
|
|
[Column("rv")]
|
|
public long Rv { get; set; }
|
|
}
|
|
} |