MongoDB
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> MongoDB

Cách chuyển ObjectId từ MongoDB trong MVC.net

Sử dụng trình kết dính mô hình tùy chỉnh như thế này ... (hoạt động dựa trên trình điều khiển C # MongoDB chính thức)

protected void Application_Start()
{
    ...
    ModelBinders.Binders.Add(typeof(ObjectId), new ObjectIdModelBinder()); 
}

public class ObjectIdModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var result = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        if (result == null)
        {
            return ObjectId.Empty;
        }
        return ObjectId.Parse((string)result.ConvertTo(typeof(string)));
    }
}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Hãy để ClusterControl mới bảo mật cho việc triển khai MongoDB của bạn

  2. MongoDB $ anyElementTrue

  3. Làm cách nào để sử dụng $ elemMatch trên phép chiếu tổng hợp?

  4. DynamoDB và MongoDB NoSQL

  5. Làm thế nào để thiết lập useMongoClient (Mongoose 4.11.0)?