<PackageReference Include="NETStandard.Library" Version="2.0.0-preview2-25401-01" />

System.Data.ITableMappingCollection

namespace System.Data { public interface ITableMappingCollection : ICollection, IEnumerable, IList { object this[string index] { get; set; } ITableMapping Add(string sourceTableName, string dataSetTableName); bool Contains(string sourceTableName); ITableMapping GetByDataSetTable(string dataSetTableName); int IndexOf(string sourceTableName); void RemoveAt(string sourceTableName); } }