Skip to content

Instantly share code, notes, and snippets.

View Cafnio's full-sized avatar

Nuno C Cafnio

  • Portugal
View GitHub Profile
@Skamiplan
Skamiplan / GenericLookup.cs
Last active July 9, 2020 19:33
A basic example on how to generically do (Entity Framework like) relations in Mongo, although at this point only 1 object deep.
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Diagnostics;
using System.Linq;
namespace Looking