Exemple #1
0
 // GetMappedName
 internal static string GetMappedName(Type type, Command command)
 {
     return(DataEntityMapper.For(type)?.Get(command)?.Name ??
            type.GetTypeInfo().GetCustomAttribute <MapAttribute>()?.Name ?? type.Name);
 }
Exemple #2
0
 // GetCommandType
 internal static CommandType GetCommandType(Type type, Command command)
 {
     return(DataEntityMapper.For(type)?.Get(command)?.CommandType ?? CommandType.Text);
 }