我正在尝试从扑打代码中找到一种在firebase数据库内的map字段中添加元素的方法。元素也是地图。这是一张嵌套的地图。
public class ComplexObject {
property List<HobilerVM> Hobiler { get; set; }
property List<IlgiAlanlarVM> IlgiAlanlar { get; set; }
}
[HttpPost]
public async Task<JsonResult> HobiVeIlgiAlanlariniKaydetGuncelle([FromBody] ComplexObject data)
{
//When i put second parameter, both of them comes with null
}
请帮助我!我期待着您的回音。先感谢您。 :D
答案 0 :(得分:0)
要写入地图,请使用点(.
)表示法。所以:
pictureCollection.document(token).updateData({ 'path.to.field': 'new value' });