Dänu
Dänu

Reputation: 5939

SIlverlight 4, FilterDescriptor and GUID as FilterOperator

Hey guys, as seen in this post, GUIDs are not supported by the FilterDescriptorts FilterOperator. Has anyone encountered this problem? Is there a workaround? Because, well it pretty much sucks (no filtering by foreign keys and so on... which is quite common).

Upvotes: 0

Views: 699

Answers (1)

cowthespud
cowthespud

Reputation: 21

Set the filter descriptor in code

public ClassName()
{
    InitializeComponent();
    this.DataSource.FilterDescriptors[0].Value = Guid.Empty;
}

Upvotes: 2

Related Questions