Relativity.DataExchange.Data.SqlDataView
Represents a SQL data view. This class cannot be inherited, backwards compatibility isn't guaranteed, and should never be consumed by API users.
namespace Relativity.DataExchange.Data
{
public sealed class SqlDataView : MarshalByRefObject, IEnumerable, ISerializable
{
public DataTable Table { get; }
public int Count { get; }
public SqlDataRow this[int index] { get; }
public SqlDataView(DataTable table);
public SqlDataView(DataSet dataset);
public IEnumerator GetEnumerator();
public void GetObjectData(SerializationInfo info, StreamingContext context);
}
}