bug: "private virtual" in the code-generator

Discussion of open issues, suggestions and bugs regarding Entity Developer - ORM modeling and code generation tool
Post Reply
mindplay
Posts: 148
Joined: Tue 13 Dec 2011 22:58
Location: Ithaca, NY

bug: "private virtual" in the code-generator

Post by mindplay » Mon 27 Feb 2012 18:09

The code-generator outputs this for a private collection:

Code: Select all

        private virtual Iesi.Collections.Generic.ISet Items
        {
            get
            {
                return this._Items;
            }
            set
            {
                this._Items = value;
            }
        }
There is no such thing as "private virtual" - a private property should be declared as "private" and not "virtual".

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Post by Shalex » Sat 03 Mar 2012 12:50

Thank you for your report. We will post here when the issue is fixed.

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Post by Shalex » Wed 07 Mar 2012 15:46

The bug with adding 'virtual' key word when generating private properties of entity class is fixed. We will post here when the corresponding build of Entity Developer is available for download.

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Post by Shalex » Fri 16 Mar 2012 17:49

New version of Entity Developer 4.3 is released!
It can be downloaded from http://www.devart.com/entitydeveloper/download.html (trial version) or from Registered Users' Area (for users with active subscription only).
For more information, please refer to http://www.devart.com/forums/viewtopic.php?t=23647 .

Post Reply