Click or drag to resize

RGDataContextBase Class

RGDataContextBase
Inheritance Hierarchy

Namespace:  Recrovit.RecroGridFramework.Data
Assembly:  Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 1.7.3
Syntax
C#
public abstract class RGDataContextBase

The RGDataContextBase type exposes the following members.

Constructors
  NameDescription
Protected methodRGDataContextBase
Initializes a new instance of the RGDataContextBase class
Top
Properties
  NameDescription
Public propertyConnection
Returns the connection being used by this context.
Public propertyContext
Gets the Database context.
Public propertyEntityNames
Gets the entity names.
Public propertyEntityTypes
Gets the entity types.
Public propertyNoTracking
Gets a value indicating whether [no tracking].
Top
Methods
  NameDescription
Public methodAddObjectTEntity
Adds an object to the object context.
Public methodCreateQuery
Public methodDeleteObjectTEntity
Marks an object for deletion.
Public methodExecuteStoreCommand
Executes an arbitrary command directly against the data source using the existing connection. The command is specified using the server's native query language, such as SQL. As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. context.ExecuteStoreCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. context.ExecuteStoreCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor));
Public methodExecuteStoreCommandAsync
Asynchronously executes an arbitrary command directly against the data source using the existing connection. The command is specified using the server's native query language, such as SQL. As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor));
Public methodExecuteStoreQueryTElement Obsolete.
Executes a query directly against the data source and returns a sequence of typed results. The query is specified using the server's native query language, such as SQL. Results are not tracked by the context, use the overload that specifies an entity set name to track results. As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor));
Public methodGetObjectByKeyTEntity
Returns an object that has the specified entity key.
Public methodSaveChanges
Saves all changes made in this context to the underlying database.
Public methodSelectTEntity
Projects each element of a sequence into a new form.
Public methodSelectValueTResultType
Limits the query results to only the property specified in the projection.
Top
See Also