Skip to content

Instantly share code, notes, and snippets.

@antodr
antodr / DataExportClass.cs
Created September 23, 2023 23:39 — forked from luisdeol/DataExportClass.cs
Export List of Objects to a Comma-Separated Values (.CSV) file using C#, allowing the export of Entity Framework DbSet to CSV File. An example of use comes within the code.
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace DataExportClass
{
class Program
{
public class Employee
@antodr
antodr / MinimalAPIs.md
Created November 13, 2022 03:19 — forked from davidfowl/MinimalAPIs.md
Minimal APIs at a glance