gpt4 book ai didi

Azure 表存储如何?

转载 作者:行者123 更新时间:2023-12-03 01:57:48 24 4
gpt4 key购买 nike

我想将联系人存储到 Azure 表(名称和性别作为属性)。所以我基本上是两个类。一个派生自 TableSerivceContext,另一个派生自 TableServiceEntity。现在我无法将各个部分连接起来。我在 Controller 上真正要做的事情(我使用MVC3)

tnx 有任何提示吗?

最佳答案

我假设您通过 View 从帖子接收属性(姓名和性别)。
所以你的 Controller 可能是这样的

public ActionResult DoSomething(User model)
{

}

所以你需要做的是..那个。创建派生自 TableServiceEntity 的类的新对象。并分配属性。像这样

var tableUser = new TableUser(){Name = model.Name, Gender=model.Gender}

然后从TableServiceContext派生的类中创建一个对象。并使用 AddObject() 方法将用户添加到表
http://msdn.microsoft.com/en-us/library/system.data.services.client.dataservicecontext.addobject.aspx

关于Azure 表存储如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10373885/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com