Im stumpted on this one...
I have a table like this....
id identity(1,1),
field1 char(10) PK
field2 int PK
I need to update field1 using the id field. (I dont know the value of field2)
Entity entity = new Entity();
entity.field1 = "Something";
IRelationPredicateBucket filter = new RelationPredicateBucket();
filter.PredicateExpression.Add(PredicateFactory.CompareValue(EntityFieldIndex.id, ComparisonOperator.Equal, 1));
adapter.UpdateEntitiesDirectly(entity, filter);
Whats wrong with this? Im not getting and error or an update...
Thanks
Matt