Hi,
Thats the only one libray ever that i found over the web which using netweaver and supporting .net core. Thanks for all.
I'd like to use it on some asp.net core app as an integration. Adding async support would be great.
Also if possible, could you add some attribute mapping ?
Instead:
mapper.Parameter<SomeOutputClass>().Property(x => x.SomeProp)
.HasParameterName("SOME_MAPPED_FIELD")
.HasParameterType(RfcFieldType.SomeType);
Using attribute mapping like:
public class SomeOutputClass
{
[RfcParam("SOME_MAPPED_FIELD", RfcFieldType.SomeType, "Maybe some description here")]
public string SomeProp {get; set;}
}
Hi,
Thats the only one libray ever that i found over the web which using netweaver and supporting .net core. Thanks for all.
I'd like to use it on some asp.net core app as an integration. Adding async support would be great.
Also if possible, could you add some attribute mapping ?
Instead:
Using attribute mapping like: