Using ASP.Net C# with MVC3
Here is my insert code.
var fInfo = new FileInfo {filename = filefield.FileName, dateadded = DateTime.Now.ToString()};
db.FileInfoes.AddObject(fInfo);
db.SaveChanges();
How would i retrieve the newly created ubique id to display a link for the user to see what they just uploaded and bookmark it ect,,,
After saving the changes, you can access the ID using your fInfo object.