I’ve been having the following (quite frustrating) problem when developing some custom forms to update list data through either an external list or SharePoint BCS... Here’s a few examples of different types of code I’m trying to execute:
SPList List = SPContext.Current.Web.Lists[“ListName”];
SPListItem CurrentItem;
Now I either have the choice of:
foreach (SPListItem item in List.Items) {
if (item[“ID”].ToString().Equals(Request.QueryString[“ID”].ToString()) {
CurrentItem = item;
break;
}
}
Or:
CurrentItem = (
from item in List.Items
where item[“ID”].ToString().Equals(Request.QueryString[“ID”].ToString())
select item
).ToList<SPListItem>()[0];
I verified that both pull back the exact same non-null SPListItem, so now I go ahead and try:
CurrentItem[“NameField”] = “SomeOtherValueHere”;
CurrentItem.Update();
List.Update(); // Not sure if this is necessary, but I tried it anyways.
However... nothing happens. I look in the ULS log, and for whatever values I update above, they seem to be passed in as null to my stored procedure associated with the list’s external content type. Here’s what I see:
<null>Parameter '@NewNameField':
Strangely enough, if I use the default list form to update the same exact value, I see everything exactly the same in ULS except for the line above reading:
An instance of type 'System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.Parameter '@NewNameField':
...the stored procedure runs correctly, and the value gets updated! I even went as far as to try forgoing the External List and accessing the list data through the BCS Model directly:
BdcService Service = SPFarm.Local.Services.GetValue<BdcService>();
DatabaseBackedMetadataCatalog Catalog =
Service.GetDatabaseBackedMetadataCatalog(SPServiceContext.Current);
ECT = Catalog.GetEntity(LOBI_NAME, ENTITY_NAME);
ILobSystem LOB = ECT.GetLobSystem();
LOBI = LOB.GetLobSystemInstances()[LOBI_NAME];
Updater = ECT.GetMethodInstance(UPDATER_NAME, MethodInstanceType.Updater);
SpecificFinder = ECT.GetMethodInstance(SPECIFICFINDER_NAME, MethodInstanceType.SpecificFinder);
IEntityInstance item = ECT.FindSpecific(new Identity(ID_PARAMETER), SPECIFICFINDER_NAME, LOBI, true);
item[“NameField”] = “SomeOtherValueHere”;
...and whether I try:
item.Update();
Or...
item.Execute(Updater);
...both of them have the EXACT same behavior as I experienced above. (Passing in the parameter to the stored procedure as null.) Here are some of the debugging steps I explored to try finding where the issue is occurring:
- For all examples, item is non-null.
- I’m sure it’s the right list item, since I’m reading in all the fields and verifying the data.
- The field contains the old data as expected before updating it.
- When updating the field value, it IS updating it in memory.
- The field remains correct after calling all .Update() methods.
- The same behavior occurs if I assign a local variable of type string, String, System.String and assign the field’s value using it.
Something weird is happening between memory and the stored procedure call that I can’t quite pinpoint. Anyone have any ideas of what could possibly be going on? I’ve exhausted my knowledge at this point.