Show / Hide Table of Contents

    Delegate Mapping<TFrom, T>

    Mapping logic delegate type

    Namespace: XData
    Assembly: XData.docfx.dll
    Syntax
    public delegate void Mapping<in TFrom, T>(TFrom source, ref T result)
        where TFrom : class where T : class, IDataObject;
    Parameters
    Type Name Description
    TFrom source

    Source object instance

    T result

    Target object instance

    Type Parameters
    Name Description
    TFrom

    Source object type

    T

    Target object type

    Extension Methods

    SerializationExtensions.ToXml<T>(T)
    CollectionsExtensions.SetValue<TKey, T>(TKey, T)
    CollectionsExtensions.AsEnum<T>(T)
    DataObjectQueryableExtensions.CompareVariable(Object, FilterOperation, String)
    Processing.Do<T>(T, Action<IProcess<T>>[])
    TypeExtensions.TryConvert<T, TResult>(T, Func<T, TResult>)
    TypeExtensions.TryConvert<T, TResult>(T, Func<T, TResult>, TResult)
    TypeExtensions.ChangeType<T>(Object)
    TypeExtensions.ChangeType(Object, Type)
    TypeExtensions.InvokeMethod<TRet>(Object, Type[], Expression<Func<TRet>>, BindingFlags)
    TypeExtensions.InvokeMethod(Object, Type[], Expression<Action>, BindingFlags)
    TypeExtensions.InvokeMethod<TRet>(Object, Expression<Func<TRet>>, BindingFlags)
    TypeExtensions.InvokeMethod(Object, Expression<Action>, BindingFlags)
    SqlBlockExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IBlockQueryAdapter, TResult>>)
    QueryDescriptionExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IQueryStructureAdapter, TResult>>)

    See Also

    Add<TFrom>(IEnumerable<TFrom>, Mapping<TFrom, T>, DataSubmitFlag)
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX