blob: 60008bc84f8b80c3b64aebe197b5c88d800533bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.WindowsInstaller.Linq
{
using System;
/// <summary>
/// Apply to a subclass of QRecord to indicate the name of
/// the table the record type is to be used with.
/// </summary>
/// <remarks>
/// If this attribute is not used on a record type, the default
/// table name will be derived from the record type name. (An
/// optional underscore suffix is stripped.)
/// </remarks>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class DatabaseTableAttribute : Attribute
{
/// <summary>
/// Creates a new DatabaseTableAttribute for the specified table.
/// </summary>
/// <param name="table">name of the table associated with the record type</param>
public DatabaseTableAttribute(string table)
{
this.Table = table;
}
/// <summary>
/// Gets or sets the table associated with the record type.
/// </summary>
public string Table { get; set; }
}
/// <summary>
/// Apply to a property on a subclass of QRecord to indicate
/// the name of the column the property is to be associated with.
/// </summary>
/// <remarks>
/// If this attribute is not used on a property, the default
/// column name will be the same as the property name.
/// </remarks>
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class DatabaseColumnAttribute : Attribute
{
/// <summary>
/// Creates a new DatabaseColumnAttribute which maps a
/// record property to a column.
/// </summary>
/// <param name="column">name of the column associated with the property</param>
public DatabaseColumnAttribute(string column)
{
this.Column = column;
}
/// <summary>
/// Gets or sets the column associated with the record property.
/// </summary>
public string Column { get; set; }
}
}
|