You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had a error if we don't remove "Id" in _defaultIdMemberNames source code.
By default => Mapper created a wrong plan with some Id.
the created plan =>
We had a error if we don't remove "Id" in _defaultIdMemberNames source code.
By default => Mapper created a wrong plan with some Id.
the created plan =>
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Map TiersProductUI -> TiersProduct
// Rule Set: CreateNew
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
tpuiToTpData =>
{
try
{
var tiersProduct = new TiersProduct();
tiersProduct.Id = tpuiToTpData.Source.ProductId;
tiersProduct.TiersID = tpuiToTpData.Source.TiersId;
tiersProduct.ProductID = tpuiToTpData.Source.ProductId;
// Tiers is ignored by filter:
// !m.HasAttribute()
// Product is ignored by filter:
// !m.HasAttribute()
// LastModifiedOn is ignored by filter:
// !m.HasAttribute()
Action<TiersProductUI, TiersProduct>.Invoke(tpuiToTpData.Source, tiersProduct);
}
it had to be tiersProduct.Id = tpuiToTpData.Source.Id;
The text was updated successfully, but these errors were encountered: