It's the old blog on blogger platform. There are no updates here.
EntityFramework exec proc with out params
using (var db = new MyEntities())
{
var Owner_ID = new ObjectParameter("Owner_ID", typeof(string));
var msgError = new ObjectParameter("msgError", typeof(string));
db.InsBeerClient(Owner_ID, msgError);
return (msgError.Value ?? "").ToString();
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.
No comments:
Post a Comment
Note: only a member of this blog may post a comment.