excellupload 1.0.0
dotnet add package excellupload --version 1.0.0
NuGet\Install-Package excellupload -Version 1.0.0
<PackageReference Include="excellupload" Version="1.0.0" />
paket add excellupload --version 1.0.0
#r "nuget: excellupload, 1.0.0"
// Install excellupload as a Cake Addin #addin nuget:?package=excellupload&version=1.0.0 // Install excellupload as a Cake Tool #tool nuget:?package=excellupload&version=1.0.0
Convert Excel file to filled List<T>
using ExcelUpload;
using ExcelUpload.Abstract;
[HttpPost]
public ActionResult Upload(HttpPostedFileBase file) {
List<IPTable> PTableList = new List<IPTable>();
PTableList.Add(new PTable<Sedan>());
PTableList.Add(new PTable<Order>());
ExcellReader er = new ExcellReader();
er.ReadExcelContent(file, PTableList);
List<Sedan> Sedans = (List<Sedan>)PTableList[0].GetDataList;
List<Order> Orders = (List<Order>)PTableList[1].GetDataList;
...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 20,910 | 5/7/2016 |