Shamil Salakhetdinov

Results 14 comments of Shamil Salakhetdinov

I have got "[Disable savepoint API, because it is not supported by Jet](https://github.com/bubibubi/EntityFrameworkCore.Jet/pull/126)" issue while using EFCore.Jet.NET6 codebase. In general (on first glance, after a few tests with sample Nortwind...

> > I have got "[Disable savepoint API, because it is not supported by Jet](https://github.com/bubibubi/EntityFrameworkCore.Jet/pull/126)" issue while using EFCore.Jet.NET6 codebase. > > In general (on first glance, after a few...

> @ShamilS @nicovil That issue and fix was after my experimental build. I should probably look at merging all the fixes since then and produce a new build @ [ChrisJollyAU](https://github.com/ChrisJollyAU)...

> > @ShamilS @nicovil That issue and fix was after my experimental build. I should probably look at merging all the fixes since then and produce a new build >...

Here is a short wish list for EFCore.NET.6.0.9+: 1. .IsClustered(...) fluent API call is not supported and has to be commented out, e.g. entity.HasKey(e => e.Id) .HasName("Category_PK") ; // .IsClustered(false);...

> > @nicovil @ShamilS I've had a look and have updated to 6.0.9 (although if your project was directly referencing 6.0.9 it would be using that as what it is...

@ChrisJollyAU: Do you plan to release the sources of the EntityFrameworkCore.Jet (6.0.x) in the near future? I may try to help with correction of its tests code etc. It's more...

@ChrisJollyAU OK, my fault, I missed to mention specific branch in git clone - it should have been: git clone --branch net6 https://github.com/ChrisJollyAU/EntityFrameworkCore.Jet.git Thanks!

> @nicovil Use this topic for any EF 7 questions @ChrisJollyAU : _How to migrate `bool` data type to `Yes/No` field?_ I'm using EntityFrameworkCore.Jet (EF7) and I have a model...

> @ShamilS Have had a look. Looks like the CLR type bool is currently mapped to a `smallint` type on the database side. Which would be why it is currently...