Skip to content

Instantly share code, notes, and snippets.

@michaeldeongreen
michaeldeongreen / 01-ListExtensions.cs
Created April 12, 2018 14:35
How to use SqlBulkCopy with Strongly Typed DataTables
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
namespace ConsoleApplication1.SqlBulkCopy
{
public static class ListExtensions
{
public static T AddNew<T>(this IList<T> list, T newItem)
@michaeldeongreen
michaeldeongreen / 01-DefaultRegistry.cs
Last active February 4, 2022 04:08
How to Implement StructureMap 4 in a WCF Service using Nested Containers
using StructureMap;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace GreenWCF.DependencyResolution
{
public class DefaultRegistry : Registry
{