How to fill dataset using LINQ with FillDataSet(ds) Method. When iam trying to implement this code iam getting error like FillDataSet does not exist in current context.
From your post
FillDataSet does not exist in current context.
It clearly means that it cant access the FillDataSet method or else your method doesnt exist.
If it exists, then try changing the access specifier to public if it is in different class.
public
PS: did you declare any method named FillDataSet ?
FillDataSet