Base solution for your next web application

Activities of "xmarwin"

Not sure of the version number, but it wasn't that new fancy looking one. Probably last week or week before.

Unfortuantely not, Visual Studio still freezes after clicking on Add new navigation property button.

Yes, see attached:

The wer file mentioned in one of the log can be downloaded here: http://www.uschovna.cz/en/zasilka/KHGTY9U752WC9FCJ-MHD/

Thanks for the older version, but you are right - this one freezes as well.

I figured what causes the freezing: We have generic classes that inherit from the entity, something like this:

[Table("AttributeValues")]
public class AttributeValue : FullAuditedEntity
{
    public virtual int AttributeDefinitionId { get; set; }

    public AttributeDefinition AttributeDefinition { get; set; }

    public virtual int? ServiceId { get; set; }

    public Service Service { get; set; }

    public virtual int? ServiceItemId { get; set; }

    public ServiceItem ServiceItem { get; set; }
}

public class AttributeValue<T> : AttributeValue
{
    public T Value { get; set; }
}

When I comment out the AttributeValue<T> : AttributeValue class, RAD tool starts working.

Thanks for looking into that, because every time I need to edit the entities using the tool, I have to comment out bunch of code (and then I must not forget to uncomment it, which is the biggest issue :o) ).

Showing 11 to 16 of 16 entries