LINQ CRM 2011更新 - 创建

时间:2011-05-26 20:49:33

标签: linq dynamics-crm dynamics-crm-2011

我注意到Technet论坛上的CRM主持人David Jennaway表示你不能在CRM 2011中使用LINQ来更新/创建记录,请参阅http://social.microsoft.com/Forums/en-IE/crmdevelopment/thread/682a7be2-1c07-497e-8f58-cea55c298062

但是我看到一些线程让它看起来好像应该有效。这是我的尝试不起作用。任何想法为什么不呢?

IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
OrganizationServiceContext orgContext = new OrganizationServiceContext(service);

EntityState state = new EntityState();
state = EntityState.Changed;

var counter = from c in orgContext.CreateQuery<pcx_entitycounter>()
        where c.pcx_name.Contains("pcx_candidate")
        select new pcx_entitycounter
        {Id = c.Id,
        pcx_name = c.pcx_name, pcx_Sequence = c.pcx_Sequence, pcx_Prefix = c.pcx_Prefix

        };

foreach (var c in counter)
        {
            string prefix = c.pcx_Prefix.ToString(); ;
            string sequence = c.pcx_Sequence.ToString();

            c.pcx_Sequence = c.pcx_Sequence + 1;
            c.EntityState = state;
            **service.Update(c);**  //FAILS HERE

        }

2 个答案:

答案 0 :(得分:2)

根据我的经验,从Context中检索实体,更新它,然后使用服务保存更改是很困难的。这让我头疼不已!

由于您的检索代码使用来自Context的查询,因此所有这些实体都应附加到Context,并且正在跟踪它们的状态。因此,您需要使用Context的方法进行更新:

foreach (var c in counter) {
    string prefix = c.pcx_Prefix.ToString(); ;
    string sequence = c.pcx_Sequence.ToString();

    c.pcx_Sequence = c.pcx_Sequence + 1;

    // Use the Context to save changes
    orgContext.UpdateObject(c);
    orgContext.SaveChanges();
}

由于我的很多代码将根据情况以不同的方式(即服务或上下文)检索实体,因此我开发了一种知道如何正确更新实体的简单方法。要扩展您的示例,您可能有一个类似于以下内容的更新方法:

public void UpdatePcxEntityCounter(pcx_entitycounter c) {
    if (!orgContext.IsAttached(c)) {
        service.Update(c);
    }
    else {
        orgContext.UpdateObject(c);
        orgContext.SaveChanges();
    }
}

这假设orgContextservice在高于该方法的范围内可用。否则,它们必须作为附加参数传递。

答案 1 :(得分:0)

没有看到困难,很难辨别出问题是什么,但是你尝试过使用orgContext.UpdateObject(c);在做更新步骤之前?此外,不确定为什么要将前缀和序列分配给循环中的局部变量,因为它们似乎没有被使用。您可能会收到SOAP异常或用于分配不起作用的值的内容。你有在实体上注册的插件吗?

请参阅以下链接了解可能的解决方案 -

How to update a CRM 2011 Entity using LINQ in a Plugin?

http://social.microsoft.com/Forums/en-US/crmdevelopment/thread/7ae89b3b-6eca-4876-9513-042739fa432a