Postgresql Support of Array datatype
Posted: Thu 14 Apr 2011 20:15
I have Postgresql stored procedure that accepts an array datatype but i don't believe LinqConnect for Postgresql supports this data type. Is the there away to work around. Entity Developer allows me to add the stored procedure to my model and the method has a data type of object for my data type.
I also noticed that the code generated from Entity developer has a the dbType = _text
I also noticed that the code generated from Entity developer has a the dbType = _text
Code: Select all
[Function(Name = @"add_multiple_items")]
public System.Int32 AddMultipleItems([Parameter(Name = "i_diagrams", DbType = "_text")] object IDiagrams)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), IDiagrams);
return ((System.Int32)(result.ReturnValue));
}