public void GetLong() { Assert.AreEqual((long)2, EntityWithIdOfLong.Range(0, 10).Get((long)2).Id); }
public void GetLongFail() { EntityWithIdOfLong.Range(0, 10).Get((long)100); }
public void GetOrNullLongFail() { Assert.IsNull(EntityWithIdOfLong.Range(0, 10).GetOrNull((long)100)); }