Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ public class GetMethod : SqlServerBaseFixture
[Test]
public void UsingKey_ReturnsEntity()
{
Person p0 = new Person
{
Active = true,
FirstName = "Foo",
LastName = "Bar",
DateCreated = DateTime.UtcNow
};
Db.Insert(p0);

Person p1 = new Person
{
Active = true,
Expand Down