コード例 #1
0
        public Project CreateProject(string name, string description)
        {
            var table  = GetTable(ProjectsTable);
            var entity = new ProjectEntity {
                Id = Guid.NewGuid(), Name = name, Description = description
            };
            var operation = TableOperation.Insert(entity);

            table.Execute(operation);

            return(entity.ToDomain());
        }