Added tests for IdentityUsers
This commit is contained in:
@@ -13,7 +13,6 @@ namespace MongoDbGenericRepository.Models
|
||||
/// The Primary Key, which must be decorated with the [BsonId] attribute
|
||||
/// if you want the MongoDb C# driver to consider it to be the document ID.
|
||||
/// </summary>
|
||||
[BsonId]
|
||||
TKey Id { get; set; }
|
||||
/// <summary>
|
||||
/// A version number, to indicate the version of the schema.
|
||||
@@ -25,7 +24,7 @@ namespace MongoDbGenericRepository.Models
|
||||
/// This class represents a basic document that can be stored in MongoDb.
|
||||
/// Your document must implement this class in order for the MongoDbRepository to handle them.
|
||||
/// </summary>
|
||||
public interface IDocument: IDocument<Guid>
|
||||
public interface IDocument : IDocument<Guid>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user