Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit 27d9a77

Browse files
committed
Added missing test file.
1 parent f1c013f commit 27d9a77

File tree

1 file changed

+14
-0
lines changed
  • Tests/LinqToDB.EntityFrameworkCore.PostgreSQL.Tests/Models/NpgSqlEntities

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.ComponentModel.DataAnnotations;
3+
4+
namespace LinqToDB.EntityFrameworkCore.PostgreSQL.Tests.Models.NpgSqlEntities
5+
{
6+
public class EntityWithXmin
7+
{
8+
[Key]
9+
public int Id { get; set; }
10+
11+
public uint xmin { get; set; }
12+
public string Value { get; set; } = null!;
13+
}
14+
}

0 commit comments

Comments
 (0)