markoh
markoh
yeah, it does work, I had includes mixed up.;)
Hey, I'm running the DELETE products api on the Catalog module. /api/catalog/products Deletes the specified items by id. Platform version is 2.13.50, all modules are up-to-date. The exception above is...
This is really unfortunate/bad. Everything we do is by SKUs. We never actually touch the IDs if not absolutely necessary.
What if we just delete the records from the database, that would work but what about side effects?
All right, I'll create a fork some time this week but for now just a few suggestions: 1) 90px tile with 10px padding (i suggest keeping the padding inside the...
Tests: ``` [Test] public void ShouldMapGuidToSimpleString() { var guid = Guid.NewGuid(); Mapper.AddMap(src => src.ToString()); Assert.AreEqual(guid.ToString(), Mapper.Map(guid)); // passes } [Test] public void ShouldMapGuidPropsToStringProps() { Mapper.AddMap(src => src.ToString()); var customer =...
yeah I just debugged the MapperInstance code and saw it. However, it kinda makes sense to register such a map application-wide because if I introduce a custom value injection (which...
What happens if I have this Guid->string mapping and later on need DateTime->string and so on? How would that look like in the DefaultMap implementation, like this: Mapper.DefaultMap = (src,...
Even the most simple use case doesn't work. Installing SideWaffle ASP.NET T4 templates to a project then trying to add a Create view for a view model. Error There was...
Using templates for Details view does work however.