nafberger

Results 10 comments of nafberger

@abuzuhri i will test the other 2 issues today so u can close them. sorry for delay

here is a reference. for a start, but I will get u a full example. thanks. https://docs.developer.amazonservices.com/en_US/feeds/Feeds_FeedType.html#FeedType_Enumeration__ProductInventoryFeeds

lets say I have already code on how to make the xml, how do i submit it using your library?

[xml example.txt](https://github.com/abuzuhri/Amazon-SP-API-CSharp/files/9455280/xml.example.txt)

like this . System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Could not load type 'SqlGuidCaster' from assembly 'Microsoft.Data.SqlClient, Version=5.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5' because it contains an object...

it maybe has to do with scrutor whith aseemply scaning. I tried to download your library and I ripped out microsoft sql data client completely, but it didn't help. we...

it seems like its the same issue as here. https://github.com/dotnet/SqlClient/issues/1930

thanks @borisdj, we solved it by excluding Microsoft.Data.SqlClient from our assembly scanning code in which we use scrutor for DI. I can provide code example if someone needs help. btw,...

public static readonly IReadOnlyCollection ExcludedAssemblies = [ "Microsoft.Data.SqlClient" ]; private static ILifetimeSelector ApplicationDependenciesTypeSelector(ITypeSourceSelector scan) where TService : class { return scan .FromApplicationDependencies(assembly => !ExcludedAssemblies.Contains(assembly.GetName().Name)) .AddClasses(classes => classes .AssignableTo() .WithoutAttribute() )...