C#系列-C#Entity Framework Core for MongoDB应用实例(33)
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
// 定义数据库上下文
public class SampleMongoDbContext : DbContext
{
public DbSet<BsonSample> BsonSamples { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
// 配置MongoDB连接字符串
optionsBuilder.UseMongoDb("mongodb://localhost:27017/SampleDb");
}
}
// 定义与MongoDB集合对应的实体
public class BsonSample
{
public int Id { get; set; }
public string Name { get; set; }
}
// 使用上下文进行数据操作
public class MongoDbExample
{
public static void Main(string[] args)
{
using (var context = new SampleMongoDbContext())
{
// 添加记录
context.BsonSamples.Add(new BsonSample { Name = "Alice" });
context.SaveChanges();
// 查询记录
var sample = context.BsonSamples.FirstOrDefault(s => s.Name == "Alice");
// 输出结果
System.Console.WriteLine(sample.Id);
}
}
}
这个代码实例展示了如何使用Entity Framework Core对MongoDB进行简单的数据访问操作。首先定义了数据库上下文和与MongoDB集合对应的实体类。然后在Main方法中创建上下文实例,执行添加记录和查询记录的操作,并打印结果。这个例子简单明了地展示了如何使用Entity Framework Core操作MongoDB。
评论已关闭