私のプロジェクト (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 コレクションやドキュメントを使用できますか? はいの場合、どのように?(いくつかの例のリンクを提供していただければ)。
ありがとう。