File tree Expand file tree Collapse file tree
test/EFCore.Jet.FunctionalTests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -856,7 +856,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
856856 }
857857 }
858858
859- // #6044
859+ /*/ / #6044
860860 [ConditionalFact]
861861 public async Task Insert_and_update_with_computed_column_with_function()
862862 {
@@ -1024,7 +1024,7 @@ RETURN @FullName
10241024 context.Database.ExecuteSqlRaw("DROP FUNCTION [dbo].[GetFullName];");
10251025 testStore?.Dispose();
10261026 }
1027- }
1027+ }*/
10281028
10291029 [ ConditionalFact ]
10301030 public async Task Insert_with_client_generated_GUID_key ( )
@@ -1176,8 +1176,8 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
11761176 . Entity < GuidBlog > (
11771177 eb =>
11781178 {
1179- eb . Property ( e => e . Id ) . HasDefaultValueSql ( "newsequentialid ()" ) . HasSentinel ( _sentinel ) ;
1180- eb . Property ( e => e . NotId ) . HasDefaultValueSql ( "newsequentialid ()" ) . HasSentinel ( _sentinel ) ;
1179+ eb . Property ( e => e . Id ) . HasDefaultValueSql ( "GenGUID ()" ) . HasSentinel ( _sentinel ) ;
1180+ eb . Property ( e => e . NotId ) . HasDefaultValueSql ( "GenGUID ()" ) . HasSentinel ( _sentinel ) ;
11811181 } ) ;
11821182 }
11831183 }
You can’t perform that action at this time.
0 commit comments