What is the correct way for Find<TEntity>(GUID) ?

All my Entities are based on   [Id('ID', TIdGenerator.Guid)]


However, up to know I never made any direct search to a GUID.

I noticed that:

Manager.Find<TEntity>(GUID)  

will not working, since there is no support for GUID as variant.

How can I do a direct search by the ID ?

thank you

Eduardo

Eduardo, use functions

TUtils.GuidToVariant
and
TUtils.VariantToGuid
located in unit "Aurelius.Global.Utils"