vote up 0 vote down star

I have a table that has a column called Ordinal used to keep track of display order. When an entity changes its ordinal value, the other records in the database need to have their ordinal value adjusted, either up or down depending on the situation. Is there a way through llblgen to do this (2.6 adapter .net 3.5)?

I would need generated queries to be something like these...

update MyTable set Ordinal = Ordinal + 1 where Ordinal >= @newOrdinal

update MyTable set Ordinal = Ordinal - 1 where Ordinal <= @newOrdinal and ordinal > @oldOrdinal

update MyTable set Ordinal = Ordinal + 1 where Ordinal >= @newOrdinal and Ordinal < @oldOrdinal

update MyTable set Ordinal = Ordinal - 1 where Ordinal > @oldOrdinal

I don't think

adapter.UpdateEntitiesDirectly(newValues, filter);

will work because newValues is going to be static when I need to add or subtract from the current value of the field

I also know I can achieve this using sprocs or triggers, but I'd like to do it through llblgen if possible.

Thanks, Jeremy

flag

1 Answer

vote up 1 vote down check

Found the answer, expressions in entity updates.

http://www.llblgen.com/documentation/2.6/Using%20the%20generated%20code/gencode_expressionsaggregates.htm#expressionsinentityupdates

link|flag
Didn't I answer this for you at the LLBLGen support forum ? :-) – Matt Apr 7 at 19:55
mad props llblgen.com/TinyForum/Messages.aspx?ThreadID=15654/… – jayrdub Apr 8 at 5:46
He He - thanks ! – Matt Apr 16 at 21:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.