Class SubqueryVariableAttribute
Data object subquery variable attribute
Inherited Members
Namespace: XData.Mapping
Assembly: XData.docfx.dll
Syntax
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class SubqueryVariableAttribute : Attribute
Examples
SubqueryVariable("A", "TestVar", 1)
Constructors
| Improve this Doc View SourceSubqueryVariableAttribute(String, String, Object)
Declaration
public SubqueryVariableAttribute(string alias, string name, object value)
Parameters
Type | Name | Description |
---|---|---|
String | alias | |
String | name | |
Object | value |
Properties
| Improve this Doc View SourceAlias
Subquery alias
Declaration
public string Alias { get; }
Property Value
Type | Description |
---|---|
String |
Name
Variable name
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
String |
TypeId
When implemented in a derived class, gets a unique identifier for this Attribute.
Declaration
public override object TypeId { get; }
Property Value
Type | Description |
---|---|
Object | An Object that is a unique identifier for the attribute. |
Overrides
| Improve this Doc View SourceValue
Variable value
Declaration
public object Value { get; }
Property Value
Type | Description |
---|---|
Object |
Extension Methods
SqlBlockExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IBlockQueryAdapter, TResult>>)