Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View dariusclay's full-sized avatar
💭
⌨️

Darius Letterman dariusclay

💭
⌨️
View GitHub Profile
@dariusclay
dariusclay / ODataEntityFrameworkModelBuilder.cs
Last active December 1, 2022 22:35
How to build OData IEdmModel from Entity Framework model
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Reflection;
using System.Text.RegularExpressions;
using System.Data.Entity;
using System.Data.Entity.Core.EntityClient;
using System.Data.Entity.Infrastructure;
using System.Diagnostics;