using System;
using System.Xml;
using System.Xml.Serialization;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Diagnostics;
using System.Runtime;
using System.Runtime.Serialization;
using Tdo;
using Tdo.Common;
using Tdo.Common.Entities;
using Tdo.Common.Entities.Tables;
using Tdo.Common.Entities.Views;
using Tdo.Common.Helper;
using Tdo.Common.TdoSqlExpressionDom;
using Tdo.Common.TdoTypes;
namespace Tdo.Common.TdoSqlExpressionDom{
/// <summary>
///TdoWheresetOfValues class for the IN and NOT IN clause.
/// </summary>
[CLSCompliant(true)]
[Serializable()]
public sealed class TdoWheresetOfValues
{
/// <summary>
/// Objects set
/// </summary>
internal object[] setOfValues;
///// <summary>
///// Parameters collection to construct parametric queries
///// </summary>
//private TdoParameterCollection Whereparametercollection;
/// <summary>
/// Constructor of TdoWheresetOfValues class for the IN and NOT IN clause
/// </summary>
/// <param name="setOfValues">Set di valori</param>
public TdoWheresetOfValues(params object[] setOfValues)
{
this.setOfValues = setOfValues;
}
/// <summary>
/// Returns the number of elements in the actual set of values
/// </summary>
public int Length
{
get
{
return this.setOfValues.Length;
}
}
}
}
|