(moving comment to answer, so I'm not hijacking @MortezaManavi's answer)
In your question, you reference EF Core. As I mentioned, we have a ADO.NET providers for many NoSQL data sources. You can download a free, 30-day trial (or open beta, depending on the data source) for any of our providers. I've included links to our current NoSQL offerings at the bottom of my answer.
We have an article in our Knowledge Base for connecting to MongoDB Data with EF6 using a code-first approach (though the principles can be applied regardless of the data source). I've transcribed the contents of that article here.
- Open Visual Studio and create a new Windows Form Application. This article uses a C# project with .NET 4.5.
- Run the command 'Install-Package EntityFramework' in the Package Manger Console in Visual Studio to install the latest release of Entity Framework.
Modify the App.config file in the project to add a reference to the MongoDB Entity Framework 6 assembly and the connection string.
Set the Server, Database, User, and Password connection properties to connect to MongoDB.
...
...
Add a reference to System.Data.CData.MongoDB.Entities.EF6.dll, located in the lib -> 4.0 subfolder in the installation directory.
- Build the project at this point to ensure everything is working correctly. Once that's done, you can start coding using Entity Framework.
Add a new .cs file to the project and add a class to it. This will be your database context, and it will extend the DbContext class. In the example, this class is named MongoDBContext. The following code example overrides the OnModelCreating method to make the following changes:
- Remove PluralizingTableNameConvention from the ModelBuilder Conventions.
Remove requests to the MigrationHistory table.
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class MongoDBContext : DbContext {
public MongoDBContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// To remove the requests to the Migration History table
Database.SetInitializer(null);
// To remove the plural names
modelBuilder.Conventions.Remove();
}
}
Create another .cs file and name it after the MongoDB entity you are retrieving, for example, Customers. In this file, define both the Entity and the Entity Configuration, which will resemble the example below:
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
[System.ComponentModel.DataAnnotations.Schema.Table("Customers")]
public class Customers {
[System.ComponentModel.DataAnnotations.Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public System.String _id { get; set; }
public System.String CompanyName { get; set; }
}
public class CustomersMap : EntityTypeConfiguration {
public CustomersMap() {
this.ToTable("Customers");
this.HasKey(Customers => Customers._id);
this.Property(Customers => Customers.CompanyName);
}
}
Now that you have created an entity, add the entity to your context class:
public DbSet Customers { set; get; }
With the context and entity finished, you are now ready to query the data in a separate class. For example:
MongoDBContext context = new MongoDBContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.Customers select line;