GitPedia
ipvalverde

ipvalverde/EPPlus.DataExtractor

EPPlus extension that make easier to extract POCO from excel tables

3 Releases
Latest: 6y ago
2.2.0Latest
ipvalverdeipvalverde·6y ago·November 3, 2019
GitHub

📋 Other changes

  • The `WithCollectionProperty` methods now ensure that the collection property is of the exact same type of the expected collection. So if you're using the `WithCollectionProperty` overload that expects a collection property of `Collection<T>`, your model must have its collection property as a `Collection<T>`. If the property is of type `ObservableCollection<T>`, for example, which inherits from `Collection<T>`, an error will be thrown at runtime. For such cases, the `WithInitializedCollectionProperty` must be used instead.
Adding to support to ICollection properties2.1.0
ipvalverdeipvalverde·6y ago·October 26, 2019
GitHub

📋 Changes

  • WithCollectionProperty overloads were added to support ICollection properties. These properties must be already initialized in the model, otherwise, an exception will be thrown.
  • Existing WithCollectionProperty methods were changed, now if the collection property is already initialized, the extraction process will only add new instances of extracted data to it rather than always creating a new instance of the collection property.
New minor version1.3.2
ipvalverdeipvalverde·8y ago·January 9, 2018
GitHub

Downgraded .NET framework dependency to .Net 4.0.