LLBLGen Pro v2.0 BETA released!

Posts   
1  /  2
 
    
Kris
User
Posts: 79
Joined: 27-Oct-2005
# Posted on: 02-Jul-2006 13:00:09   

The RC can't be downloaded anym ore, so I presume the official release is near today. simple_smile

Saw the option in my profile to upgrade my license. I already did and I am looking forward to the new version of LLBLGen + the new sections on the site (some pages disappeared so we must get some new ones instead) simple_smile

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39615
Joined: 17-Aug-2003
# Posted on: 02-Jul-2006 13:35:24   

Kris wrote:

The RC can't be downloaded anym ore, so I presume the official release is near today. simple_smile

Saw the option in my profile to upgrade my license. I already did and I am looking forward to the new version of LLBLGen + the new sections on the site (some pages disappeared so we must get some new ones instead) simple_smile

V2 was released early this morning at 1:15 AM simple_smile Thanks for the upgrade simple_smile If you login with your new credentials you'll see v2.0 downloads.

We moved to a new download system which is easier to manage (no more CMS objects, but a new system) and which gives per-user content for what the user should be able to access. So there aren't pages removed, they're just merged into 1 page simple_smile

On the main site, we temporarily disabled tutorials, as those will be added later this week again so to avoid having a blank page, we removed it from the navigation.

Frans Bouma | Lead developer LLBLGen Pro
Kris
User
Posts: 79
Joined: 27-Oct-2005
# Posted on: 02-Jul-2006 14:04:31   

Okay, clear.

I am in and downloaded the files. I didnot have the chance to play with the beta so this is my first experience with version 2. I've been waiting for the final version to start a new project.

Thank you Frans, hope version 2 will be sending even more positive feedback your way then numer one. simple_smile Hope you can handle it.

Stranger
User
Posts: 23
Joined: 22-Nov-2005
# Posted on: 04-Jul-2006 14:07:01   

There is a facility in SQL that u can increment a value in a command like following :

update tableX set fieldX = fieldX + 2

is there something in LLBLGen that update a table without fetch?

This work is done in LLBLGen as following :

1: FetchEntity(tableX) 2: tableX.fieldX = tableX.fieldX + 2 3: SaveEntity(tableX)

in this way, the concurrency problem will ocuured! because after execution of line 1, it is possible that the value of fieldX will change!

is there an alternative? thanks

Walaa avatar
Walaa
Support Team
Posts: 14950
Joined: 21-Aug-2005
# Posted on: 04-Jul-2006 15:24:55   

Check the following thread, scroll down to see a code sample: http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=2760

1  /  2