FORCEINLINE bool FCompareRowByColumnAscending<UNameProperty>::ComparePropertyValue( const TSharedPtr< IPropertyHandle >& LhsPropertyHandle, const TSharedPtr< IPropertyHandle >& RhsPropertyHandle ) const
{
	FName LhsValue; 
	LhsPropertyHandle->GetValue( LhsValue );

	FName RhsValue; 
	RhsPropertyHandle->GetValue( RhsValue );

	return LhsValue.Compare( RhsValue ) < 0;
}
FORCEINLINE bool FCompareUObjectByPropertyAscending<UNameProperty>::ComparePropertyValue( const FName& LhsValue, const FName& RhsValue ) const
{
	return LhsValue.Compare( RhsValue ) < 0;
}