c# - DataSet and DataRow for Net Standard 1.5 -
i'm trying port pcl net-standard stable version (1.5).
the system.data.datatable
fix nuget package of system.data.common
v4.3.0. there workaround fix system.data.dataset
, system.data.datarow
namespaces without targeting net-standard preview version 2.0?
or maybe valid refactor type use it?
you cannot use dataset/datarow these classes not present in netstandard1.5. if library uses these types in public api cannot replace these classes own "system.data.dataset" or "system.data.datarow" because these custom types not match real framework classes come in netstandard2.0.
if use internally may rewrite code use idatareader , idbcommand directly, or use 3rd-party data access library nreco.data provides own simplified recordset structure similar datatable/datarow (but not same of course).
Comments
Post a Comment