MongoFramework tries to bring some of the nice features from Entity Framework into the world of MongoDB.
Some of the major features include:
- Entity mapping for collections, IDs and properties through attributes
- Indexing through attributes (including text and geospatial)
- Fluent mapping builder
- Entity change tracking
- Changeset support (allowing for queuing multiple DB updates to run at once)
- Diff-updates (only changes to an entity to be written)
- Entity Buckets (clustering of small documents together, improving index performance)
- Runtime type discovery (serialize and deserialize without needing to specify every "known" type)
MongoFramework is currently built on-top of the official MongoDB C# driver.
MongoFramework is licensed under the MIT license. It is free to use in personal and commercial projects.
There are support plans available that cover all active Turner Software OSS projects. Support plans provide private email support, expert usage advice for our projects, priority bug fixes and more. These support plans help fund our OSS commitments to provide better software for everyone.
These extensions are official packages that enhance the functionality of MongoFramework, integrating it with other systems and tools.
Supports profiling database reads and writes, pushing the data into MiniProfiler.
The core mapping of entities and their properties is automatic however you have the choice of using the fluent mapping builder or certain attributes to alter this behaviour.
Fluent Mapping
usingMongoFramework;publicclassMyEntity{publicstringId{get;set;}publicstringName{get;set;}publicstringDescription{get;set;}}publicclassMyContext:MongoDbContext{publicMyContext(IMongoDbConnectionconnection):base(connection){}publicMongoDbSet<MyEntity>MyEntities{get;set;}protectedoverridevoidOnConfigureMapping(MappingBuildermappingBuilder){mappingBuilder.Entity<MyEntity>().HasProperty(m =>m.Name, b =>b.HasElementName("MappedName")).ToCollection("MyCustomEntities");}}Attribute Mapping
usingMongoFramework;usingSystem.ComponentModel.DataAnnotations;[Table("MyCustomEntities")]publicclassMyEntity{publicstringId{get;set;}[Column("MappedName")]publicstringName{get;set;}publicstringDescription{get;set;}}publicclassMyContext:MongoDbContext{publicMyContext(IMongoDbConnectionconnection):base(connection){}publicMongoDbSet<MyEntity>MyEntities{get;set;}}For attribute mapping, many of the core attributes are part of the System.ComponentModel.Annotations package.
| Attribute | Description |
|---|---|
[Table("MyFancyEntity", Schema = "MyNamespace")] | Map the Entity to the collection specified. When a schema is specified, it is prefixed onto the name with a "." (dot) separator. |
[Key] | Map the property as the "Id" for the entity. Only required if your key doesn't have a common name like "Id" etc. |
[NotMapped] | When applied to a class or property, skips mapping when reading/writing. |
[Column("NewColumnName")] | Remaps the property with the specified name when reading/writing. |
MongoFramework supports indexing specified through both the fluent mapping builder and the IndexAttribute.
This is applied to the properties you want indexed and will apply the changes to the database when the context is saved.
Fluent Mapping
mappingBuilder.Entity<IndexExample>().HasIndex(e =>e.EmailAddress, b =>b.HasName("Email").IsDescending(false));Attribute Mapping
publicclassIndexExample{publicstringId{get;set;}[Index("Email",IndexSortOrder.Ascending)]publicstringEmailAddress{get;set;}publicstringName{get;set;}}The following variations of indexes are supported across various property types:
To support compound indexes, define indexes with the same name across multiple properties.
When doing this, you will want to control the order of the individual items in the compound index which is available through the IndexPriority property on the attribute.
For fluent mapping, you can specify multiple indexes in one declaration to combine them and handle nesting for complex data structures including through arrays.
publicclassTestModelBase{publicstringId{get;set;}publicstringName{get;set;}publicIEnumerable<NestedModel>ManyOfThem{get;set;}}publicclassTestModel:TestModelBase{publicDictionary<string,object>ExtraElements{get;set;}publicstringOtherName{get;set;}publicintSomethingIndexable{get;set;}publicNestedModelBaseOneOfThem{get;set;}}publicclassNestedModelBase{publicstringDescription{get;set;}}mappingBuilder.Entity<TestModel>().HasIndex(m =>new{m.SomethingIndexable,m.OneOfThem.Description,m.ManyOfThem.First().AnotherThingIndexable}, b =>{b.HasName("MyIndex").IsDescending(true,false,false)});MongoFramework supports Text and 2dSphere special indexes.
For attribute mapping, these special index types are selected through the IndexType property on the IndexAttribute.
Please consult MongoDB's documentation on when the indexes are appropriate and their restrictions.
Like Entity Framework, MongoFramework is built around contexts - specifically the MongoDbContext.
An example context would look like:
publicclassMyContext:MongoDbContext{publicMyContext(IMongoDbConnectionconnection):base(connection){}publicMongoDbSet<MyEntity>MyEntities{get;set;}publicMongoDbSet<MyOtherEntity>MyOtherEntities{get;set;}}While it mostly feels the same as creating contexts in Entity Framework, there are a number of differences still with the biggest being in the creation of contexts.
The IMongoDbConnection is the core infrastructure that allows connection to MongoDB and is required to instantiate a context.
You can create an instance of a connection in two ways:
IMongoDbConnectionconnection;//FromUrlconnection=MongoDbConnection.FromUrl(newMongoUrl("mongodb://localhost:27017/MyDatabase"));//MongoUrl comes from the official MongoDB driver//FromConnectionStringconnection=MongoDbConnection.FromConnectionString("mongodb://localhost:27017/MyDatabase");You can perform text queries (with a Text index), geospatial distance queries (with a 2dSphere index) and geospatial intersecting queries.
myContext.MyDbSet.SearchText("text to search");myContext.MyDbSet.SearchGeoIntersecting(e =>e.FieldWithCoordinates,yourGeoJsonPolygon);myContext.MyDbSet.SearchGeoNear(e =>e.FieldWithCoordinates,yourGeoJsonPoint);Each of these returns an IQueryable which you can continue to narrow down the results like you would normally with LINQ.
For SearchGeoNear specifically, there are optional parameters for setting the distance result field, the minimum distance and the maximum distance.
Entity buckets are a method of storing many smaller documents in fewer larger documents. MongoFramework provides various classes that help in creating and managing buckets. A typical setup for using an entity bucket might look like:
publicclassMyBucketGrouping{publicstringSensorId{get;set;}publicDateTimeDate{get;set;}}publicclassMyBucketItem{publicDateTimeEntryTime{get;set;}publicintValue{get;set;}}publicclassMyContext:MongoDbContext{publicMyContext(IMongoDbConnectionconnection):base(connection){}[BucketSetOptions(bucketSize:1000,entityTimeProperty:nameof(MyBucketItem.EntryTime))]publicMongoDbBucketSet<MyBucketGrouping,MyBucketItem>MyBuckets{get;set;}}The attribute BucketSetOptions is required.
The bucketSize is the maximum number of items in a single bucket.
The entityTimeProperty identifies the property name in the sub-entity where a timestamp is stored.
Keep in mind the limitations of MongoDB (size of document) when determining the number of items in a bucket.
Managing buckets is very similar to managing normal entities though are currently limited to add data only.
using(varcontext=newMyContext(MongoDbConnection.FromConnectionString("mongodb://localhost:27017/MyDatabase"))){context.MyBuckets.AddRange(newMyBucketGrouping{SensorId="ABC123",Date=DateTime.Parse("2020-04-04")},new[]{newMyBucketItem{EntryTime=DateTime.Parse("2020-04-04T01:00"),Amount=123},newMyBucketItem{EntryTime=DateTime.Parse("2020-04-04T02:00"),Amount=456},newMyBucketItem{EntryTime=DateTime.Parse("2020-04-04T03:00"),Amount=789}});awaitcontext.SaveChangesAsync();}Sometimes your model in the database will have more fields than the model you are deserializing to. You have two options to control the behaviour: ignore the fields or accept, mapping the extra fields to a specific dictionary.
To ignore the fields, you need to specify the IgnoreExtraElements attribute on the entity's class definition.
To map the fields, you need to specify the ExtraElements attribute on an IDictionary<string, object> property.
MongoFramework provides runtime type discovery in two methods: automatically for any properties of type object and for any entities that specify the RuntimeTypeDiscovery attribute on their class definition.
This type discovery means that you don't need to know what potential types extend any others which you would otherwise need to set via the BsonKnownTypes attribute by the MongoDB driver.
[RuntimeTypeDiscovery]publicclassKnownBaseModel{}publicclassUnknownChildModel:KnownBaseModel{}publicclassUnknownGrandChildModel:UnknownChildModel{}Without the RuntimeTypeDiscovery attribute in this scenario, the model will fail to deserialize properly from the database.
usingMongoFramework;usingSystem.ComponentModel.DataAnnotations;publicclassMyEntity{publicstringId{get;set;}publicstringName{get;set;}publicstringDescription{get;set;}}publicclassMyContext:MongoDbContext{publicMyContext(IMongoDbConnectionconnection):base(connection){}publicMongoDbSet<MyEntity>MyEntities{get;set;}}
...var connection =MongoDbConnection.FromConnectionString("YOUR_CONNECTION_STRING");using(varmyContext=newMyContext(connection)){varmyEntity=myContext.MyEntities.Where(myEntity =>myEntity.Name=="MongoFramework").FirstOrDefault();myEntity.Description="An 'Entity Framework'-like interface for MongoDB";awaitmyContext.SaveChangesAsync();}