Możesz utworzyć prostą procedurę składowaną w SQL Server, która wybiera następną wartość sekwencji w następujący sposób:
CREATE PROCEDURE dbo.GetNextSequenceValue
AS
BEGIN
SELECT NEXT VALUE FOR dbo.TestSequence;
END
a następnie możesz zaimportować tę procedurę składowaną do modelu EDMX w Entity Framework i wywołać tę procedurę składowaną i pobrać wartość sekwencji w następujący sposób:
// get your EF context
using (YourEfContext ctx = new YourEfContext())
{
// call the stored procedure function import
var results = ctx.GetNextSequenceValue();
// from the results, get the first/single value
int? nextSequenceValue = results.Single();
// display the value, or use it whichever way you need it
Console.WriteLine("Next sequence value is: {0}", nextSequenceValue.Value);
}
Aktualizacja: właściwie możesz pominąć procedurę składowaną i po prostu uruchomić to surowe zapytanie SQL z kontekstu EF:
public partial class YourEfContext : DbContext
{
.... (other EF stuff) ......
// get your EF context
public int GetNextSequenceValue()
{
var rawQuery = Database.SqlQuery<int>("SELECT NEXT VALUE FOR dbo.TestSequence;");
var task = rawQuery.SingleAsync();
int nextVal = task.Result;
return nextVal;
}
}