Skip to content

LinqToDB.Identity migration #3886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
fix build
(cherry picked from commit c8edfad)
  • Loading branch information
MaceWindu committed Dec 24, 2022
commit 55d537e5574e80c289c2e05902c74ed6ddafc50f
4 changes: 2 additions & 2 deletions Tests/Linq/Linq/ConcurrencyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Tests.Linq
public class ConcurrencyTests : TestBase
{
[Table]
class ConcurrencyTable<TStamp>
public class ConcurrencyTable<TStamp>
where TStamp: notnull
{
[PrimaryKey] public int Id { get; set; }
Expand All @@ -25,7 +25,7 @@ class ConcurrencyTable<TStamp>
[Column] public string? Value { get; set; }
}

class CustomConcurrencyPropertyAttribute : ConcurrencyPropertyAttribute
public class CustomConcurrencyPropertyAttribute : ConcurrencyPropertyAttribute
{
public CustomConcurrencyPropertyAttribute()
: base(default)
Expand Down