示例#1
0
        public void LoadData(int userImgId)
        {
            using (WorkWithMeDataContext oDC = new WorkWithMeDataContext())
            {
                spGetImageDataResult result = oDC.spGetImageData(userImgId).FirstOrDefault();

                Content = result.ImageContent.ToArray();
            }
        }