henrikdahl8240

Results 10 comments of henrikdahl8240

@omnilogix I had exactly the same need as you, actually several years ago. So I just programmed it using reflection. You can just do the same. I made my own...

@ericcanadas, yes, it's OK. Here you go. Perhaps you may respond, if it works for you? ``` public class HDODataConventionModelBuilder : ODataConventionModelBuilder where T : DbContext { internal HDODataConventionModelBuilder(T dbContext)...

Hello @ericcanadas! I am glad to hear, that you like it. There is a detail, I would like to address to you. As you may see, the where clause uses...

So as you nearly write, I have tried to select to install version 2.2.6 using the NuGet package manager, but it gives this error: "NU1605: Detected package downgrade: Microsoft.EntityFrameworkCore.SqlServer from...

Perhaps you may try it yourself using the solution I mailed to Sam Xu on March 6. 2020 13:46? The mail details the few steps you should go through.

@AbraamNader Perhaps you would like to try upgrading to version 7.4.0-beta and see if you get the same problems as shown in https://github.com/OData/WebApi/issues/2080. If you also get the same problems...

Scandit can "see" all cameras and it generally works much, much better. It would be very nice to get the same benefits with this open source project.

Yes, go to: https://docs.scandit.com/stable/web/ Click the link here: Try out our live demo [here](http://websdk.scandit.com/). I have tried it on my iPhone 13. Honestly, it works breathtakingly well, simply completely awesome....

You will be able to see, that it can also easily scan non-flat barcodes, e.g. on bottles, tubes of hand lotion etc.

@jp2masa @ajcvickers In fact I have figured out how to do it, i.e. like: ``` builder.OwnsOne(p => p.Value, ot => { }); builder.Navigation(p => p.Value).IsRequired(); ``` So to me it...