Mercurial > pub > bltoolkit
view Source/DataAccess/SqlQueryAttribute.cs @ 4:f757da6161a1
!bug 100 + 2h fixed gregression
author | cin |
---|---|
date | Sun, 24 Aug 2014 17:57:42 +0400 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using BLToolkit.Data; namespace BLToolkit.DataAccess { [JetBrains.Annotations.BaseTypeRequired(typeof(DataAccessor))] [AttributeUsage(AttributeTargets.Method)] public class SqlQueryAttribute : Attribute { public SqlQueryAttribute() { } public SqlQueryAttribute(string sqlText) { _sqlText = sqlText; } private string _sqlText; public string SqlText { get { return _sqlText; } set { _sqlText = value; } } private bool _isDynamic; public bool IsDynamic { get { return _isDynamic; } set { _isDynamic = value; } } private int _id = int.MinValue; public int ID { get { return _id; } set { _id = value; _isDynamic = value != int.MinValue; } } public virtual string GetSqlText(DataAccessor accessor, DbManager dbManager) { return _sqlText; } } }