I am trying to query for physical network adapters and I see different result from different approaches
get-wmiobject win32_networkadapter -Filter "NetEnabled='True' and PhysicalAdapter='True'"| select netconnectionid, name, netconnecionstatus
returns

whereas
get-netadapter -physical
returns only

I was under the assumption that -physical is same as PhysicalAdapter='True' but that don't seem to be the case as seen from the results. why?
physicalby one, and not by another.