Mercurial > pub > bltoolkit
view Source/DataAccess/IndexAttribute.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:34:46 +0400 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using BLToolkit.Common; using BLToolkit.Properties; namespace BLToolkit.DataAccess { [AttributeUsage(AttributeTargets.Method), CLSCompliant(false)] public class IndexAttribute : Attribute { public IndexAttribute(params string[] names) { if (null == names) throw new ArgumentNullException("names"); if (names.Length == 0) throw new ArgumentException(Resources.MapIndex_EmptyNames, "names"); _fields = NameOrIndexParameter.FromStringArray(names); } public IndexAttribute(params int[] indices) { if (null == indices) throw new ArgumentNullException("indices"); if (indices.Length == 0) throw new ArgumentException(Resources.MapIndex_EmptyIndices, "indices"); _fields = NameOrIndexParameter.FromIndexArray(indices); } public IndexAttribute(params NameOrIndexParameter[] fields) { if (null == fields) throw new ArgumentNullException("fields"); if (fields.Length == 0) throw new ArgumentException(Resources.MapIndex_EmptyFields, "fields"); _fields = fields; } private readonly NameOrIndexParameter[] _fields; public NameOrIndexParameter[] Fields { get { return _fields; } } } }