Skip to main content
A newer version of this page is available. .

EntityServerModeSource.KeyExpression Property

Gets or sets the key expression.

Namespace: DevExpress.Data.Linq

Assembly: DevExpress.Data.v18.2.dll

Declaration

[DefaultValue("")]
public string KeyExpression { get; set; }

Property Value

Type Default Description
String String.Empty

A String value that specifies the key expression.

Remarks

In most instances, the KeyExpression property specifies the key field name:


efServerModeSource1.KeyExpression = "CustomerID";

To specify multiple columns of a composite key, pass the comma-separated or semicolon separated list of key column names to this property. For instance: “KeyPart1;KeyPart2;KeyPart3“.

See Also