Remotion.Linq.SqlBackend.SqlStatementModel.Resolved.ResolvedSimpleTableInfo.ResolvedSimpleTableInfo C# (CSharp) Method

ResolvedSimpleTableInfo() public method

public ResolvedSimpleTableInfo ( Type itemType, string tableName, string tableAlias ) : System
itemType System.Type
tableName string
tableAlias string
return System
    public ResolvedSimpleTableInfo (Type itemType, string tableName, string tableAlias)
    {
      ArgumentUtility.CheckNotNull ("itemType", itemType);
      ArgumentUtility.CheckNotNullOrEmpty ("tableName", tableName);
      ArgumentUtility.CheckNotNullOrEmpty ("tableAlias", tableAlias);

      _itemType = itemType;
      _tableName = tableName;
      _tableAlias = tableAlias;
    }