Tortuga.Chain.PostgreSqlDataSource.WithUser C# (CSharp) Method

WithUser() public method

Creates a new data source with the indicated user.
This is used in conjunction with audit rules.
public WithUser ( object userValue ) : PostgreSqlDataSource
userValue object The user value.
return PostgreSqlDataSource
        public PostgreSqlDataSource WithUser(object userValue)
        {
            var result = WithSettings(null);
            result.UserValue = userValue;
            return result;
        }