after execution this code:
EmployeeEntity emp = new EmployeeEntity();
emp.Name = textBox1.Text;
emp.Save();
I see in the ormprofiler this coce execute:
INSERT INTO [Employee]
([Name],
[Picture])
VALUES (@p2,
@p3);
SELECT @p1 = SCOPE_IDENTITY()
Can you show me how to get @p1 value after execute the code in client side.