-1

鉴于我有一个TEntity将是一个类的参数,我如何获取其中一个字段的值。

public class ProductStrategy<TContract> : IContractCreatorStrategy<TContract>
{
    public IContract<TContract> CreateContract<TEntity>(TEntity dbEntity)
    {
        var productEntity = Convert.ChangeType(dbEntity, typeof(TEntity));

        var contractType = typeof (TContract);
        var entityType = dbEntity.GetType();

        var contract = Activator.CreateInstance(contractType);

        var contractFields = contractType.GetProperties().ToList();
        var entityFields = entityType.GetProperties().ToList();

        foreach (var contractField in contractFields)
        {
            foreach (var entityField in entityFields)
            {
                if (entityField.Name.Contains(contractField.Name))
                {

//get the value of the entityfield and set the contract field value to the it.
                }
            }

        }

        return new ProductContract<TContract>();
        return productContract;
    }
}
4

1 回答 1

0
var fieldValue = entityField.GetValue(dbEntity, null);
contractField.SetValue(contract, fieldValue);
于 2016-05-25T12:09:34.653 回答