예제 #1
0
        public void AttributeRepositoryTest()
        {
            var repo = new AttributeRepository(factory);

            var all   = repo.GetAll();
            var one   = repo.Single(x => x.Id == 3);
            var query = repo.Get(x => x.Family.Contains("Tecno"));
        }