Remotion.Linq.SqlBackend.SqlStatementModel.Resolved.ResolvedSimpleTableInfo.ResolvedSimpleTableInfo C# (CSharp) 메소드

ResolvedSimpleTableInfo() 공개 메소드

public ResolvedSimpleTableInfo ( Type itemType, string tableName, string tableAlias ) : System
itemType System.Type
tableName string
tableAlias string
리턴 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;
    }