ExcelGenerator.net 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ExcelGenerator.net --version 1.0.2
NuGet\Install-Package ExcelGenerator.net -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ExcelGenerator.net" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExcelGenerator.net --version 1.0.2
#r "nuget: ExcelGenerator.net, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ExcelGenerator.net as a Cake Addin
#addin nuget:?package=ExcelGenerator.net&version=1.0.2

// Install ExcelGenerator.net as a Cake Tool
#tool nuget:?package=ExcelGenerator.net&version=1.0.2

ExcelGenerator

ExcelGenerator is a simple library to generate excel by just passing the list of records irrespective of type. It will also take care of column name, column orders and date formats automatically or just define column name, order and date formats using attributes. It also provides multiple overloads for providing generating excel on specific location or having stream.

Installation

ExcelGenerator is available as a NuGet Package. Type the following command into NuGet Package Manager Console window to install it:

PM> Install-Package ExcelGenerator

Getting Started

Apply excel generator attributes to the properties that needs to be included in excel having multiple overloads for customizing name order and date formats. Here County property will not be added in excel file as it doesn't have excel generator attribute

    public class Model
    {
        [ExcelGenerator("First Name")]
        public string FirstName { get; set; }

        [ExcelGenerator("Birth Date",dateFormat:Constants.DateFormat)]
        public DateTime DateOfBirth { get; set; }

        [ExcelGenerator]
        public string City { get; set; }

        public string County { get; set; }

        [ExcelGenerator("Email Address")]
        public string Email { get; set; }

        [ExcelGenerator(order: 3)]
        public string Address { get; set; }

    }

Now load sample data

    //Get sample data to generate excel 
    var data = GetSampleData();
            
	public static List<Model> GetSampleData()
    {
        return new List<Model>
        {
                new Model { FirstName = "James",  LastName = "Butt",  Address="6649 N Blue Gum St", City="New Orleans" , County="Orleans",  State="LA" , Zip = 70116, Phone="504-621-8927" , Email="jbutt@gmail.com", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Josephine",  LastName = "Darakjy",  Address="4 B Blue Ridge Blvd", City="Brighton" , County="Livingston",  State="MI" , Zip = 48116, Phone="810-292-9388" , Email="josephine_darakjy@darakjy.org", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Art",  LastName = "Venere",  Address="8 W Cerritos Ave #54", City="Bridgeport" , County="Gloucester",  State="NJ" , Zip = 8014, Phone="856-636-8749" , Email="art@venere.org", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Lenna",  LastName = "Paprocki",  Address="639 Main St", City="Anchorage" , County="Anchorage",  State="AK" , Zip = 99501, Phone="907-385-4412" , Email="lpaprocki@hotmail.com", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Donette",  LastName = "Foller",  Address="34 Center St", City="Hamilton" , County="Butler",  State="OH" , Zip = 45011, Phone="513-570-1893" , Email="donette.foller@cox.net", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Simona",  LastName = "Morasca",  Address="3 Mcauley Dr", City="Ashland" , County="Ashland",  State="OH" , Zip = 44805, Phone="419-503-2484" , Email="simona@morasca.com", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Mitsue",  LastName = "Tollner",  Address="7 Eads St", City="Chicago" , County="Cook",  State="IL" , Zip = 60632, Phone="773-573-6914" , Email="mitsue_tollner@yahoo.com", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Leota",  LastName = "Dilliard",  Address="7 W Jackson Blvd", City="San Jose" , County="Santa Clara",  State="CA" , Zip = 95111, Phone="408-752-3500" , Email="leota@hotmail.com", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Sage",  LastName = "Wieser",  Address="5 Boston Ave #88", City="Sioux Falls" , County="Minnehaha",  State="SD" , Zip = 57105, Phone="605-414-2147" , Email="sage_wieser@cox.net", DateOfBirth=DateTime.Now},
                new Model { FirstName = "Kris",  LastName = "Marrier",  Address="228 Runamuck Pl #2808", City="Baltimore" , County="Baltimore City",  State="MD" , Zip = 21224, Phone="410-655-8723" , Email="kris@gmail.com", DateOfBirth=DateTime.Now},
        };
    }

Now generate excel using stream or generate excel on specific path

            //Method 1: Get excel file stream 
            var responseStream = ExcelHelper.GenerateExcel(data);

            //Method 2: Generate excel file on specified path 
            var currentDirectory = Directory.GetCurrentDirectory();
            ExcelHelper.GenerateExcel($"{currentDirectory}\\SampleFile.xlsx", data);

Sample Project

I have also added sample project named ExcelGenerator.Sample which consumes library with all possible methods

Nuget

Also available on Nuget

Version

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.9 961 1/7/2021
1.0.8 677 1/7/2021
1.0.7 666 1/7/2021
1.0.6 683 12/21/2020
1.0.5 881 12/21/2020
1.0.4 649 12/21/2020
1.0.3 668 12/21/2020
1.0.2 696 12/21/2020
1.0.1 668 12/21/2020
1.0.0 645 12/21/2020