我想知道我是否可以在我的项目(asp.net mvc 4 c#)中使用像模型(模型类)这样的 mongodb。
例如:
namespace Demo.Models
{
public class Model1
{
public int ID { get; set; }
public string Title { get; set; }
public DateTime ReleaseDate { get; set; }
public string Genre { get; set; }
public decimal Price { get; set; }
}
public class MovieDBContext : DbContext
{
public DbSet<Model1> models { get; set; }
}
}
假设这是 mssql 数据库的标准模型。我可以创建这样的模型来使用 MongoDB 集合、文档吗?如果是,如何?(如果你能给我提供一些例子的链接)。
谢谢。