Iam implementing entity spaces in C# application and was able to execute queries such as the below one successfully.
coll.query.where(coll.prodlineid.equal("id")
if( coll.query.load())
However I need to replace all these queries in the code with Stored procedures. For this I used: coll.Load(esQuerytype.storedprocedure, "testproc", para...
Hi,
I intend to execute a stored procedure using enityspaces and wrote the following method in Custom file.
public BizUnitCollection loadby_bizunitname(string description) {
BizUnitCollection rtn_Ary = new BizUnitCollection();
esParameters parameters = new esParameters();
parameters.Add(new esParameter("name", description))...
Hi,
I am using ComponentArt webDataGrid control , I can bind any EntityCollection to this control but i couldnt able to use with InnerJoined Entity Collections.
My problem is ;
There is two table Products and Categories. I join Categories Table with Products Table.Then in my grid I wanna show Categories (Joined Table) in a Combobox in...