2013-07-24 05:35:32 +00:00
|
|
|
|
using System.Data;
|
|
|
|
|
|
|
|
|
|
namespace Marr.Data.Mapping
|
2013-03-30 21:56:34 +00:00
|
|
|
|
{
|
|
|
|
|
public class ColumnInfo : IColumnInfo
|
|
|
|
|
{
|
|
|
|
|
public ColumnInfo()
|
|
|
|
|
{
|
|
|
|
|
IsPrimaryKey = false;
|
|
|
|
|
IsAutoIncrement = false;
|
|
|
|
|
ReturnValue = false;
|
2013-07-24 05:35:32 +00:00
|
|
|
|
ParamDirection = ParameterDirection.Input;
|
2013-03-30 21:56:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string AltName { get; set; }
|
|
|
|
|
public int Size { get; set; }
|
|
|
|
|
public bool IsPrimaryKey { get; set; }
|
|
|
|
|
public bool IsAutoIncrement { get; set; }
|
|
|
|
|
public bool ReturnValue { get; set; }
|
2013-07-24 05:35:32 +00:00
|
|
|
|
public ParameterDirection ParamDirection { get; set; }
|
2013-03-30 21:56:34 +00:00
|
|
|
|
|
|
|
|
|
public string TryGetAltName()
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrEmpty(AltName) && AltName != Name)
|
|
|
|
|
{
|
|
|
|
|
return AltName;
|
|
|
|
|
}
|
2013-07-27 05:02:25 +00:00
|
|
|
|
return Name;
|
2013-03-30 21:56:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|