📄 ordinalparameterdescriptor.cs
字号:
using System;
using NHibernate.Type;
namespace NHibernate.Engine.Query
{
[Serializable]
public class OrdinalParameterDescriptor
{
private readonly int ordinalPosition;
private readonly IType expectedType;
private readonly int sourceLocation;
public OrdinalParameterDescriptor(int ordinalPosition, IType expectedType, int sourceLocation)
{
this.ordinalPosition = ordinalPosition;
this.expectedType = expectedType;
this.sourceLocation = sourceLocation;
}
public int OrdinalPosition
{
get { return ordinalPosition; }
}
public IType ExpectedType
{
get { return expectedType; }
}
public int SourceLocation
{
get { return sourceLocation; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -