Constructor PrimaryKeys
PrimaryKeys()
Initializes a new instance of the PrimaryKeys<T> class.
public PrimaryKeys()
PrimaryKeys(Expression<Func<T, object>>, object)
Initializes a new instance of the PrimaryKeys<T> class with a key-value pair.
public PrimaryKeys(Expression<Func<T, object>> keyExpression, object value)
Parameters
keyExpressionExpression<Func<T, object>>The expression representing the key.
valueobjectThe value of the primary key.
PrimaryKeys(string, object)
Initializes a new instance of the PrimaryKeys<T> class with a key-value pair.
public PrimaryKeys(string key, object value)
Parameters
keystringThe key of the primary key.
valueobjectThe value of the primary key.