Ejemplo n.º 1
0
 public static FastDynamic GetFastDynamic <T>(T entity) where T : class, new()
 {
     return(new FastDynamic()
     {
         Properties = new ConcurrentDictionary <String, FastProperty>(ManagerGX.GetProps(entity.GetType().GetProperties(), entity)),
         Instance = entity
     });
 }