You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
469 B
18 lines
469 B
using Microsoft.EntityFrameworkCore.ChangeTracking; |
|
using Microsoft.EntityFrameworkCore.ValueGeneration; |
|
|
|
namespace AX.FireTrainingSys |
|
{ |
|
/// <summary> |
|
/// ObjectId 生成器。 |
|
/// </summary> |
|
public class ObjectIdGenerator : ValueGenerator<string> |
|
{ |
|
public override bool GeneratesTemporaryValues => false; |
|
|
|
public override string Next(EntityEntry entry) |
|
{ |
|
return ObjectId.NewId().ToString(); |
|
} |
|
} |
|
}
|
|
|