Skip to content

Instantly share code, notes, and snippets.

@Fidouda
Fidouda / SqlExceptionCreator
Last active November 28, 2018 01:33 — forked from benjanderson/SqlExceptionCreator
Creates SqlException through reflection and sets ErrorMessage and ErrorCode. Be aware this reflects private functionality which is likely to change, do not use this in production code
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.Serialization;
using System.Data.SqlClient;
public static class SqlExceptionCreator
{
public static SqlException Create(string message, int errorCode)