View Program.cs
using MongoDB.Bson; | |
using MongoDB.Entities; | |
using System; | |
using System.IO; | |
using System.Threading.Tasks; | |
namespace TestApplication | |
{ | |
public class Book : Entity | |
{ |
View Program.cs
using MongoDB.Driver; | |
using MongoDB.Driver.Linq; | |
using MongoDB.Entities; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace TestApplication | |
{ | |
public class Course : Entity |
View Program.cs
using MongoDB.Driver; | |
using MongoDB.Driver.Linq; | |
using MongoDB.Entities; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace TestApplication | |
{ | |
public class User : Entity | |
{ |
View Program.cs
using MongoDB.Entities; | |
using System; | |
using System.Threading.Tasks; | |
namespace TestProg | |
{ | |
internal static class Program | |
{ | |
public class ArtGallery : Entity | |
{ |
View Program.cs
using MongoDB.Bson; | |
using MongoDB.Bson.Serialization.Attributes; | |
using MongoDB.Driver; | |
using MongoDB.Entities; | |
using MongoDB.Entities.Core; | |
using System.Linq; | |
namespace TestApp | |
{ | |
public class Team : Entity |
View Program.cs
using MongoDB.Entities; | |
using MongoDB.Entities.Core; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace TestApp | |
{ | |
public class Zone : Entity | |
{ | |
public int SqlId { get; set; } |
View Program.cs
using MongoDB.Driver; | |
using MongoDB.Driver.Linq; | |
using MongoDB.Entities; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace ReferencedRelationshipExample | |
{ | |
public class Author : Entity | |
{ |
View Program.cs
using MongoDB.Bson; | |
using MongoDB.Driver; | |
using MongoDB.Entities; | |
using MongoDB.Entities.Core; | |
using System.Linq; | |
namespace StackOverFlow | |
{ | |
public class OptionMenu : Entity | |
{ |
View Program.cs
using MongoDB.Entities; | |
using MongoDB.Entities.Core; | |
using System; | |
using System.Linq; | |
namespace StackOverFlow | |
{ | |
public class AutoSave : Entity | |
{ | |
public string[] Templates { get; set; } |
View Program.cs
using MongoDB.Entities; | |
using MongoDB.Entities.Core; | |
using System.Linq; | |
namespace StackOverFlow | |
{ | |
public class Item : Entity | |
{ | |
public int a { get; set; } | |
public int b { get; set; } |
NewerOlder